*{
    margin: 0;
    box-sizing: border-box;
    
}
body{
    font-family: Arial, Helvetica, sans-serif;
}


nav{
    height: 40px;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    color: white;
}
#down{
    color: white;   
    text-align: center;
    position: relative;
    top: 90%;
}
#homePage{
    height: 100vh;
    background-image: url(hunters-race-dE0sBTZCVoY-unsplash.jpg);
    background-position: center;
    background-size: cover;
    margin: 10px;
    border-radius: 5px;
}
#page_1{
    height: auto;
}
#text{
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 10px;
    margin-right: 10px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 50px;
    border-radius: 5px;
}
#text2{
    margin: 100px auto;
    width: fit-content;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    padding: 50px;
    border-radius: 5px;
}
button{
    
    margin: 20px ;
    height: 40px;
    width: 150px;
    background-color: transparent;
   
    
}
button:hover{
    cursor: pointer;
}

.image{
    margin: auto;
    height: 300px;
    width: 600px;
    background-image: url("hiroshi-tsubono-7Iid4mkhh98-unsplash.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    color: white;
}
#ticTok{
    position: relative;
    top: 100px;
    text-align: center;
}
.button2{
    color: white;
    margin-top: 10px;
    border: 2px solid white;
}

#page_2{
    height: auto;

   
}
#page_2 h1{
    margin: 100px 0 0 0;
    text-align: center;
}
#page_2 hr{
    text-align: center;
    width: 50%;
}
#about_container{
    margin: 50px auto;
}

#about_image{
    margin: auto;
    width: 300px;
    height: 300px;
    background-image: url(vitae-london-331tAGMqa8Y-unsplash.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    color: white;
    
}
#about_image h3{
    padding: 5px;
    text-align: center;
    position: relative;
    top: 90%;
}

#page_3{
    margin: 10px;
    height: 100vh;
    background-image: url(hiroshi-tsubono-7Iid4mkhh98-unsplash.jpg);
    background-position: center;
    background-size: cover; 
    border-radius: 5px; 
}
#mens1{
    margin: 20px;
    width: fit-content;
    text-align: center;
    position: relative;
    top: 70%;
    color: white;
    
}
#page_4{
    margin: 10px;
    height: 100vh;
    background-image: url(saif71-com-WAO5usFRxaY-unsplash.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}
#mens{
    width: fit-content;
    margin: 20px;
    text-align: start;
    position: relative;
    top: 70%;
    color: white;
    
}

.text{
    margin: 50px 10px 0px 10px;
    padding: 50px;
    text-align: center;
    
}
.text2{
    margin: 20px;
    padding: 50px;
    text-align: center;
}
.button1{
    display: block;
    margin: 20px auto;
}
#womans{
    margin: auto;
    text-align: center;
    position: relative;
    top: 40%;
    right: 20px;
    color: white;
}
#page_5{
    margin: 10px;
    height: 100vh;
    background-image: url(13on-7c9MKi2dWsc-unsplash.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}
#mens3{
    
    width: fit-content;
    margin: 20px;
    text-align: center;
    position: relative;
    top: 70%;
    color: white;

}

#about_image1{
    margin: auto;
    width: 300px;
    height: 300px;
    background-image: url(laura-chouette-rX7CEXnv6xk-unsplash.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    color: white;
    
}
#about_image1 h3{
    padding: 5px;
    text-align: center;
    position: relative;
    top: 90%;
}
footer{
    
   
    background-color: white;
   
    
    padding: 50px;
    color: black;
}
#footer-container{
    margin: auto;
    text-align: center;
    
}

#footerText{
    text-align: center;
    font-weight: 100;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: xx-small;
    width: 200px;
    margin: auto;
    border-radius: 10px;
    height: 30px;
    padding: 5px;
    
}

@media(max-width: 720px){
    #mens3{
        margin: auto;
    }
    #mens{
        margin: auto;
    }
    #mens1{
        margin: auto;
    }
}

/*Animation*/
nav {
    animation: slide-in 1s ease forwards;
  }
  
  @keyframes slide-in {
      from {
        transform: translateY(100%);
      }
      to {
        transform: translateY(0);
      }
  }



#down {
    animation: slide-in 1s ease forwards;
}

    @keyframes slide-in {
        from {
            transform: translateY(600%);
        }
        to {
            transform: translateY(0);
        };

    }


