/*  Custom Styles*/

html {
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    align-items: stretch;
}

.container {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

body {
    background: black;
}

.jumbotron {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.jumbotron h1 {
    font-size: 30vw;
    font-family: "clarendon-urw", sans-serif;
    color: whitesmoke;
    height: fit-content;
    margin-top: 5%;
    margin-bottom: 0%;
    text-transform: uppercase;
}

.jumbotron h3 {
    color: whitesmoke;
    text-align: center;
    border-top: solid 1px whitesmoke;
    display: inline-block;
    padding-top: 25px;
    font-size: 5vw;
    height: fit-content;
}

@media only screen and (min-width: 1200px) {
    .jumbotron h1 {
        font-size: 20rem;
    }
    .jumbotron h3 {
        font-size: 3rem;
    }
}

@media only screen and (max-width: 979px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 320px) {}