@font-face {
    font-family: "HelveticaC";
    src: url("./public/Helvetica-Bold.ttf");
    font-weight: normal;
    font-style: normal;
}
html, body { 
    height: 100%;
    padding: 0;
    margin: 0;
    width: 100%; 
    font-family: "HelveticaC";
}
.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content {
    opacity: 0;
    font-family: "HelveticaC";
    transition: opacity 200ms ease-out;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
}
/* For Mobiles and Tablets */
.title {
    width: 20vw;
    height: auto;
}
.content {
    font-size: 2.5vw;
    line-height: 3vw;
}
/* Targets laptops and above */
@media (min-width: 1025px) {
    .title {
        width: 8vw;
        height: auto;
    }
    .content {
        font-size: 0.8vw;
        line-height: 1vw;
    }
}
