* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    background-image: 
    linear-gradient(to right , #01022d3f 30% ,#000000c5),
    url(avatar.webp);
    background-size: cover;
    height: 100vh;
}
body:hover {
    background-image:linear-gradient(to right ,#01022d3f 30% ,transparent),url(avatar.webp)
}
.container {
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    width: 90%;
    margin: auto;
    padding: 20px;
    
    
    z-index: 1;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .logo {
    text-decoration: none;
    color: #ffff;
    font-size: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    
}
nav ul {
    margin: 0 20px;
}
nav ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
}
nav ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffff;
}
.content {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 80vh;
}
.content .text {
    width: 25%;
    color: #ffff;
}
.content .text h2 {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.content .text p {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 20px;
    font-style: italic;
}
.content .text button {
    width: 120px;
    padding: 5px 0;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 20px;
    border-radius: 10px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    
}

