* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(186, 60, 51);
    color: rgb(230, 224, 196);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}
.header {
    margin-bottom: 6rem;
}
.header p {
    font-size: clamp(2.25rem, 3vw, 2.75rem);
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.logo {
    display: block;
    max-width: 512px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.subheader {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 3rem;
}
.contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
    max-width: 520px;
    text-align: center;
}
.contact-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.contact-block a {
    color: rgb(230, 224, 196);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    display: block;
    margin-bottom: 0.25rem;
}
.contact-block a:hover {
    text-decoration: underline;
}
.contact-block .name {
    font-size: 1rem;
    font-weight: 600;
}
@media (max-width: 500px) {
    .contacts {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
