*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
    
}
header{
    width: 100%;
    height: 100vh;
    background-image: url('https://img.wallpapersafari.com/phone/640/1136/20/85/b7h4AW.jpg');
    opacity: 95%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.menubutton{
    margin-right: 60px;
}
.mainheader{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 .mainheader .logo img{
     width: 190px;
     height: 120px;
     padding-left: 60px;
     padding-top: 20px;
 }
 .mainheader nav{
     width: 450px;
     display: flex;
     justify-content: space-around;
     align-items: center;
     
 }


 .mainheader nav a{
     text-decoration: none;
     color: black;
     text-transform: uppercase;
 }

 .mainheader button{
     padding: 10px 45px;
     text-align: center;
     font-size: 14px;
     color: black;
     border: solid black;
     border-radius: 10px;
     background-color: #5959b8;
     
 }
 main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }


 main .left-sec{
    padding-left: 900px;
    padding-top: 350px;
 }

 .left-sec h2{
     font-size: 20px;
     text-transform: capitalize;
     font-weight: bolder;
     color: wheat;
 }

 .left-sec h1{
    font-size: 55px;
    text-transform: capitalize;
    font-weight: bolder;
    color: wheat;
    margin: 0px 0;
 }

 .left-sec p{
    font-size: 20px;
    text-transform: capitalize;
    font-weight: bolder;
    color: darkred;
    margin-bottom: 5px;
 }

 .left-sec button{
    padding: 15px 45px;
    text-align: center;
    font-size: 14px;
    color: black;
    background-color: rosybrown;
    border: solid black;
    border-radius: 10px;
 }
 