*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', sans-serif;
}
.header{
    height: 100vh;
    width: 100%;
    background-image: url(Image/background.jpg);
    background-size: cover;
    background-position: center;
    padding: 0 10%;
}
.logo{
    width: 70px;
}
nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}
nav ul li a{
    text-decoration: none;
    color: #3f22a4;
    font-weight: 600;
    transform: .2s;
}
nav ul li a:hover{
    color: #f0021a;
}
.text-box{
    margin-top: 130px;
    max-width: 600px;
}
.text-box h1{
    font-size: 65px;
    margin-bottom: 20px;
    color: #3f22a4;
    font-family: 'Bulgatti', sans-serif;
}
.text-box p{
    font-size: 17px;
}
.text-box a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: #3f22a4;
    padding: 10px 30px;
    font-size: 18px;
    margin-top: 50px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: .2s;
}
.text-box a:hover{
    background: #f0021a;
}
.user-box{
    background: #99ffff;
    position: absolute;
    top: 0;
    right: 150px;
    z-index: 1;
}
.user-box img{
    display: block;
    padding-top: 100px;
    width: 240px;
    margin-bottom: -205px;
    border-radius: 50%;
}

