.center-container {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar {
    position: absolute;
    background-color: black;
    width: 100vw;
    height: 12%;
    top: 0%;
    left: 0%;
    margin: 0;
}

#nav-left {
    float: left;
}

#nav-right {
    float: right;
}

.button {
    border-radius: 7px;
    padding: 7px;
    font-size: 27px;
    border: none;
    background-color: rgb(159, 159, 246);
    font-family: "Lucida Console", "Courier New", monospace;
    font-weight: 700;
    margin: 10px;
    transition: 0.3s;
    float: inherit;
}

.button:hover {
    box-shadow: 0px 12px 12px 8px rgba(56, 56, 56, 0.70);
    transform: translateY(-5px);
    cursor: pointer;
}

body {
    background-color: rgb(12, 12, 12);
    padding: 0;
}

body::-webkit-scrollbar {
    display: none;
}

iframe {
    border: 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
}