
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(240, 25%, 28%);
    color: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    flex-direction: column;
}

.container {
    background: hsl(36.7, 65.6%, 62.4%);
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    animation: fadeIn 1.5s ease;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 5px;
}

.contact a {
    color: #2b2b2b;
    text-decoration: underline;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: none;
}

.logo-bottom {
    position: relative;
    max-width: 300px;
    height: auto;
    opacity: 1;
    padding-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
