* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: body;
    transition: all 0.3s ease;
}

html {
    background-color: #121212;
    overflow-x: hidden;
    color: #fff;
}

.body header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100dvw;
    height: 8dvh;
    padding: 0 1vw;
    background-color: #000;
}

.body header button {
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: none;
    outline: none;
    font-size: 1.5rem;
}

.body header img {
    height: 70%;
}

.body header a {
    place-content: center;
    color: #000;
    text-decoration: none;
    background-color: #fff;
    height: 60%;
    font-weight: 700;
    border-radius: 0.5rem;
    padding: 0 1dvw;
}

.body header a:hover {
    background-color: rgb(200, 200, 200);
}

.body nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 45vw;
    height: 100dvh;
    position: fixed;
    z-index: 1;
    top: 0;
    left: -110%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1rem);
    box-shadow: 0 0.5rem 0.5rem #000;
    transition: all 0.5s ease;
}

.body nav img {
    width: 80%;
    margin: 1rem auto;
}

.body nav a {
    display: flex;
    align-items: center;
    padding: 1vh;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-transform: capitalize;
    height: 8dvh;
    border-top: 0.1rem solid #a3a3a3;
}

.body nav a:hover {
    background-color: rgba(255, 255, 255, 0.302);
}

.body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    align-self: center;
    max-width: 2000px;
    padding: 0 0vw 7rem 0vw;
    align-self: center;
}