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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0e0e0e;
    color: #ffffff;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    background-image: url('img/bkg-t.png');
    background-size: auto 90vh;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
}

.logo {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.logo2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

main {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;

}

h1 {
    font-family: 'Libre Caslon Text', 'Times New Roman',  serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 3rem;
    width: 340px;
}

.contact {
    margin-top: 1rem;
    width: 340px;
}

.contact h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact a {
    display: block;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact .email {
    color: #4db6ac;
    font-size: 1rem;
}

.contact .email:hover {
    text-decoration: underline;
}

.contact .phone {
    color: #4db6ac;
    font-size: 1rem;
}

.contact .phone:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

footer {
    padding: 2rem 3rem;
    margin-top: auto;
    text-align: center;
}

footer p {
    color: #666666;
    font-size: 0.75rem;
    font-weight: 100;
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem;
    }

    main {
        padding: 1.5rem;
    }

    footer {
        padding: 1.5rem;
    }
}
