*{
    padding: 0;
    margin: 0;
    
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;


  
  

}



.header{
min-height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(49, 128, 7, 0.33),rgba(131, 131, 131, 0.7)),url(welcome.jpg);

background-position: center;
background-size:cover;
position:relative;
   
}

nav {
   display: flex;
   padding: 1% 4%;
   justify-content: space-between;
   align-items: center;

}

nav img{
    width: 100px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 10px 12px;
    position: relative;

}


.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.nav-links ul li::after{
  
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(56, 186, 0);
    display: block;
    margin: auto;

    transition: .6s;
}
.nav-links ul li:hover::after{
width: 100%;
}

.text-box{
  
    width: 90%;
    color: white;
    position: absolute;
    top:50%;
    left: 50%;
    transform:translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 80px;
}

.text-box p {
    color: white;
    font-size: 25px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 20px;

}

.text-box a{
    text-decoration: none;
    border: solid white 3px;
    padding: 15px;
    margin: 5px;
    border-radius: 20px;
    text-align: center;

    display: inline-block;
    font-size: 20px;
    color: white;
    transition: .5s;
}

.text-box a:hover {

    background-color: rgba(21, 99, 57, 0.633);
    border-radius: 15px;
    border-color: rgba(0, 255, 119, 0.633);
    font-size: 22px;

}



