@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
    width: 100%;
    font-family: "Oswald", sans-serif;
}

#main {
    width: 100%;
    height: 100%;
    background-image: url(sky.jpg);
    background-size: cover;
    background-position: center;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    color: white;
}

#nav h2 {
    font-size: 35px;
}

#nav i {
    font-size: 35px;
    font-weight: 800;
    cursor: pointer;
}

#full {
    height: 100%;
    width: 30%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.606);
    top: 0;
    left: -30%;
    backdrop-filter: blur(15px);
    padding: 150px 60px;
}

#full h4 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 10px;
}

#full i {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    font-weight: 500;
    font-size: 25px;
    cursor: pointer;
}