@font-face {
    font-family: GothamLight;
    src: url(./GothamLight.ttf);
}

@font-face {
    font-family: SaolDisplayRegular;
    src: url(./SaolDisplayRegular.ttf);
}

body {
    background-color: #4f70ff
}

body #homeVideo {
    height: calc(100% - 65px);
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

body .subText {
    font-family: 'Shalimar', cursive;
    max-width: 450px;
    height: 350px;
    position: absolute;
    right: 30px;
    bottom: 60px;
    color: white;
    text-align: center;
    line-height: 0
}

body .bigtext {
    font-family: SaolDisplayRegular;
    font-size: 9rem;
    padding: 0;
    margin: 0
}

body .smalltext {
    font-family: GothamLight;
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: 5rem
}

body .bigtext2 {
    font-size: 7.3rem;
}

nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-image: url(../Assets/Bar.png);
    background-size: cover;
    height: 65px
}

nav ul {
    height: 100%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff
}

nav ul img {
    width: 85px;
    -o-object-fit: contain;
    object-fit: contain
}

.potriate {
    display: none;
    background-color: white;
    text-align: center
}

.potriate .message {
    width: 100%;
    color: black;
    font-size: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.subText {
    animation: fadeIn 5s;
    -webkit-animation: fadeIn 5s;
    -moz-animation: fadeIn 5s;
    -o-animation: fadeIn 5s;
    -ms-animation: fadeIn 5s
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@media (max-width: 1000px) {
    body #homeVideo {
        height: calc(100% - 55px)
    }
    body .subText {
        width: 150px;
        height: 150px;
        right: 30px;
        bottom: 30px
    }
    body .bigtext {
        font-size: 3rem
    }
    body .smalltext {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 1.8rem
    }
    nav {
        height: 55px
    }
    nav ul img {
        width: 75px
    }
}

@media screen and (orientation: portrait) {
    #homeVideo,
    .subText {
        display: none !important
    }
    .potriate {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100vh
    }
    nav {
        display: none
    }
}

html,
body {
    height: 100%;
    overflow: hidden;
    outline: 0;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif
}