*{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: serif
     ;
}
.banner{
     width: 100%;
     height: 100vh;
     background: url(./img/IMG-20240313-WA0053.jpg);
     background-size: cover;
     background-position: center;
}
.navbar{
     margin: auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
.logo{
     cursor: 
     pointer;
     border-radius: 10px;
     margin-left: 7px;
     margin-top: 7px;
}
/* .navbar ul li{
     list-style: none;
     display: inline-block;
     margin: 0 20px;
     position: relative;
} */

h1::after{
     content: '';
     height: 3px;
     width: 0;
     background: #ffffff;
     position: absolute;
     left: 3%;
     bottom: -5px;
     transition: 1s;
}
h1:hover::after{
     width: 95%;
}
.content{
     width: 100%;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     text-align: center;
     color: white;
}
h1{
     font-size: 80px;
     margin-top: 80px;
}
p{
     margin: 20px auto;
     font-weight: 100;
     line-height: 25px;
     font-style: italic;
}
button{
     width: 200px;
     padding: 15px 0;
     text-align: center;
     margin: 20px 10px;
     font-weight: bold;
     border: 2px solid #fff;
     color: #fff;
     background: transparent;
     cursor: pointer;
     position: relative;
     overflow: hidden;
}
span{
     background: #f39600;
     height: 100%;
     width: 0;
     position: absolute;
     left: 0;
     bottom: 0;
     z-index: -1;
     transition: 1s;
}
button:hover span{
     width: 100%;
}
button:hover{
     border: none;
     color: black;
}
