
body {
    margin: 0;
    height: 100%;
    overflow: hidden;
}

#three-container {
    position: fixed;
    z-index: 0;
}

.container {
    position: fixed;
    top: 0;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    transition: 1s ease;
    color: rgba(237, 197, 151, 255);
}

.hidden {
    opacity: 0%;
    top: -2000px;
}


.close-button {
    font-size: 1rem;
    background-color: rgba(55, 10, 6, 80%);
    color: rgba(237, 197, 151, 255);
    padding: 5px 10px;
    border-radius: 15px;
}

.card {
    background-color: rgba(110, 13, 13, 80%);
    border-radius: 10px;
    height: 70%;
    width: 50%;
    margin-left: 100px;
    padding: 40px 60px;
    margin: 0 auto;
    box-shadow: inset 4px -10px 5px 0px rgba(55,10,6,1);
}


.off-screen-menu {
    background-color: rgb(34, 37, 49);
    height: 100vh;
    width: 100%;
    max-width: 250px;
    position: fixed;
    top: -900px;
    right: -160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    transition: 0.5s ease;
    z-index: 3;
    border-radius: 5px;
}

.off-screen-menu li {
    list-style: none;
}

.off-screen-menu a {
    text-decoration: none;
}

#menu:hover {
    .off-screen-menu {
        right: 0;
        top: 0;
    }

    .ham-menu{
        right: 180px;
        top: 93vh;
    }
}

.ham-menu {
    height: 50px;
    width: 50px;
    margin-left: auto;
    position: fixed;
    top: 5px; right: 20px;
    z-index: 4;
    transition: .5s ease;

}

.ham-menu span {
    height: 6px;
    width: 100%;
    background-color: #6f86FF;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%
}
