
nav{
    height: 15%;
}

#navigation{
    transition: all 0.5s;
    background: transparent;
}

nav .container-fluid{
    max-width: 95%;
}

nav ul li a{
    text-decoration: none;
    color: whitesmoke;
    margin-left: 32px;
    font-size: 20px;
}

nav ul li a:hover{
    text-decoration: none;
    color: whitesmoke;
}

nav li{
    list-style: none;
    font-size: 16px;
}

nav h1{
    color: whitesmoke;
}

.logo{
    display: inline-flex;
    max-width: min-content;
    padding-right: 32px;
}

.navbar-brand img{
    width: 13%;
    object-fit: contain;
    margin: 0 5px;
    padding: 0;
}

#responsivemenu ul{
    text-align: center;
}

main{
    padding: 17vh 0 1vh 0;
    background-color: black;
    color: whitesmoke;
}

h1{
    text-transform: uppercase;
    text-align: center;
}

img{
    max-width: 100%;
}

body{
    width: 100%;
    height: 100vh;
    margin: 0;
}

p{
    line-height: 22px;
    font-family:'Times New Roman', Times, serif;
}
h1, h2, h3, h4{
    line-height: 24px;
}

footer div{ 
    background-color: black;
    color: whitesmoke;
}

.drop-text {
    font-size: 3rem;
    color: whitesmoke;
    position: relative;
    animation: drop 2s ease-in-out forwards;
}

@keyframes drop {
    0% {
        top: -100px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

.clock {
    font-size: 2rem;
    color: whitesmoke;
    background-color: black;
}

iframe{
    margin: 30px;
}