* {
    margin: 0;
    padding: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #faf7eb;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    width: 90%;
    min-height: 100vh;
    margin-right: auto;
    margin-left: auto;
}

.flex-container {
    margin-top: 10vh;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    overflow: scroll;
}

.logo {
    justify-content: center;
    display: flex;
    height: 15vh;
}

#logo-jimmyz {
    align-items: center;
    width: 25em;
}

h1 {
    margin-top: 7vh;
    margin-bottom: 2vh;
    color: #f0c335;
    text-transform: uppercase;
    line-height: 63pt;
    font-family: "podium-soft-variable", sans-serif;
    font-variation-settings: "wdth" 75;
    font-weight: 300; /* Or 400, if 300 is too light. */
    font-size: 70pt;
    text-align: center;
}

.contact {
    font-family: "podium-soft-variable", sans-serif;
    font-variation-settings: "wdth" 75;
    font-weight: 300; /* Or 400, if 300 is too light. */
    letter-spacing: 0.8pt;
    font-size: 20pt;
    text-align: center;
    color: #a93044;
    text-transform: uppercase;
}

.contact p:first-child {
    margin-top: 7vh !important;
    margin-bottom: 2vh !important;
}

.contact p:nth-child(3) {
    margin-top: 3vh !important;
    margin-bottom: 2vh !important;
}

.contact a {
    text-decoration: none;
    color: #a93044;
    border-bottom: 4px solid#a93044;
    margin-bottom: 100px;
}

.socialMedia {
    margin-top: 2vh;
    display: flex;
    flex-direction: row;
}

.instagram, .facebook {
    width: 40px;
    margin-right: 30px;
}

.tiktok {
    width: 35px;
}

@media screen and (max-width: 830px) {
    h1 {
        margin-top: 4vh;
        font-size: 55pt;
        line-height: 48pt;
    }

    .contact {
        font-size: 14pt;
    }

    .contact p:first-child {
        margin-top: 5vh !important;
        margin-bottom: 1.5vh !important;
    }
    
    .contact p:nth-child(3) {
        margin-top: 2vh !important;
        margin-bottom: 1vh !important;
    }

    #logo-jimmyz {
        align-items: center;
        width: 20em
    }

   }    


@media screen and (max-width: 520px) {
    h1 {
        margin-top: 4vh;
        font-size: 32pt;
        line-height: 30pt;
    }

    .contact {
        font-size: 12pt;
    }

    .contact a {
        border-bottom: 3px solid#a93044;
    }

    .instagram, .facebook {
        width: 25px;
        margin-right: 40px;
    }
    
    .tiktok {
        width: 20px;
    }

    #logo-jimmyz {
        align-items: center;
        width: 12em;
    }

    .contact p:first-child {
        margin-top: 5vh !important;
        margin-bottom: 1.5vh !important;
    }
    
    .contact p:nth-child(3) {
        margin-top: 2vh !important;
        margin-bottom: 1vh !important;
    }
  }