*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100%;
    background-image: url("./images/bg.jpg");
    background-size: cover;
    background-position: center;
}
body::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: -1;
}

header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5px 20px;
}

header .logo{
    height: 80px;
    width: 80px;
}
header nav ul{
    list-style: none;
}
header nav ul li{
    display: inline-block;
}
header nav ul li a{
    text-decoration: none;
    margin: 29px;
    font-weight: 600px;
    color: white;
    transition: all 0.3s;
}
header nav ul li a:hover{
    color: thistle;
}
header nav ul li .contact{
    display: block;
    background-color: teal;
    padding: 10px 20px;
    border-radius: 15px;
}
main{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
    color: white;
}
main h1{
    font-size: 65px;
    margin-bottom: 15px;
}
main p{
    font-size: 30px;
    font-weight: 600;
}
main .button-area{
    margin-top: 40px;
}
.button-area button{
    padding: 17px 30px;
    background: rgb(206, 141, 98);
    border: none;border-radius: 30px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
}
.button-area button:hover{
    color: thistle;
}
.button-area .free{
    margin-right: 30px;
}
.g-ms {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate3d(50vw, 50vh, 0);
    z-index: 9999;
    pointer-events: none;
    transition: all 0.3s ease-out;
  }
  .g-ms_i {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 30px;
    background: rgba(206, 141, 98, 0.05);
  }