body{
    padding: 0px;
    margin: 0px;
    /*overflow: hidden;*/
    background-color: black;
    width: auto;
    height: auto;
}

.top{
    width: auto;
    height: 30px;
    background-color: rgb(0, 0, 0);
}

.header{
    width: auto;
    height: auto;
    background-image: url(bcg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

}


.header h1{
    font-size: 150px;
    width: 60%;
    margin: 0 auto;
    margin-top: 70px;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    transition: 700ms;
    border: 3px solid #ccc;
    text-shadow: 15px 10px 3px #000000,
    -2px -2px 0px #000000;
}

.header h1:hover{
    transform: scale(1.2);
    transition: 1200ms;
}

.header h1 a{
    text-decoration: none;
    color: rgb(46, 201, 212);
}

.header h1 a:hover{
    cursor: grab;
}

.bottom{
    width: auto;
    height: 50px;
    background-color: rgb(0, 0, 0);
}

.promo{
    justify-content: center;
    text-align: center;
    margin-top: 5%;
    animation: fadeIn 1s forwards;
    animation-timing-function: ease-out;
    
}

.promo a{

}

.promo a img{
    margin: 20px;
    width: 50px;
    transition: rotate 500ms;
}

.promo a img:hover{
    animation-name: rotate ;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;

}

.navbar{
    margin-top: 12%;
    animation: fadeIn 700ms forwards;
    animation-timing-function: ease-out;
}

.navbar ul {
    list-style-type: none;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #000000b0;
    border: 2px solid #000;
    border-radius: 2px 2px 10px 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.788);
    text-align: center;
    font-size: 50px;
    margin-left: 5px;
    margin-right: 5px;
    transition: 300ms;
    overflow: hidden;
}

.navbar ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px 50px;
    text-decoration: none;
    color: rgb(46, 201, 212);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 350;
    transition: 500ms;
}

.navbar ul li:hover {
    background-color: rgba(0, 0, 0, 0.90);
    transition: 1s;
}

.navbar ul li a:hover {
    color: rgb(72, 230, 241);
}



.audio{
    text-align: right;
    margin: 5px;

}


@keyframes rotate{
    0% {
      transform: rotateY(0deg); 
    }
    100% {
      transform: rotateY(360deg);
    }
  }

  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

