

*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    background: linear-gradient(#111,#222);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::after{
    content: '';
    width: 100%;
    height: 100%;
    background:#e80;
    position: absolute;
    z-index: -1;
    clip-path: circle(40% at right 70%);
    
}

.container{
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    padding: 20px 0;

}

nav .logo{
    color: #FFF;
    text-decoration: none;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

nav ul li{
    display: inline-block;
    margin-right: 20px;
}

nav ul li a{
    color: #e80;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 12px;
    

}

nav ul li a:hover, .active{
    background-color: #fff;
    color: rgb(27, 21, 13);
    border-radius: 20px;
    
}

.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 80%;
    margin: auto;
}
.content .text{
    color: #fff;
    width: 40%;

}
.content .text h2{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}
.content .text p{
    font-weight: 18px;
    line-height: 25px;
    margin: 10px 0;
    letter-spacing: 1px;
}

.content .image{
    width: 40%;

}

.content .image img{
    width: 400px;
}


/*---- Responsiv ------------*/


@media (min-width:950px) and (max-width:1150px){
    .content .image img{
        width: 330px;
    }
}

@media (max-width:950px){
    .content, nav{
        flex-direction: column;
        justify-content: center;
    }

    .content .image{
        width: 80%;
    }
    .content .text{
        width: 80%
    }
    body::after{
        clip-path: circle(50% at bottom);
    }
    nav ul li a{
        padding: 0;
    }
    nav ul li a:hover, .active{
        background:none;
        color:  #e80;
    }
    
    


}

