@font-face {
    font-family: Century;
    src: url(centurygothic.ttf);
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #7692aa;
    font-family: Century;
    color: #fff;

    display: flex;
    flex-direction: column; /* stack sections vertically */
    align-items: center; /* center horizontally */
    height: 100vh; /* full viewport height */
}

/* Top and bottom dotted lines */
.dotted-line {
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #e9e1d0 0 6px, transparent 6px 9px);
}

#dotted-above {
    margin-top: 8vh;
}

#dotted-below {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 8vh 0; /* smaller margin to leave space for curioso */
}

#dotted-below::before,
#dotted-below::after {
    content: "";
    flex: 1;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #e9e1d0 0 6px, transparent 6px 9px);
}

#dotted-below p {
    margin: 0;
    padding: 0 1em;
    font-size: 1.2rem;
    white-space: nowrap;
    z-index: 1;
    position: relative;
    background-color: #7692aa;
}

/* Logo centered independently */
#logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; /* take all remaining vertical space */
}

.logo {
    max-width: 50vw;
    height: auto;
}

/* Smartphones: set logo width to 80vw */
@media (max-width: 600px) {
    .logo {
        max-width: 80vw;
    }
}

/* Curioso section below logo */
#curioso {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#curioso a {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: white;
    text-decoration: none;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.social {
    height: 35px;
    width: 35px;
}
