* {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background-color: #322B2B;
}

.dropdowns {
    display: flex;
    position: absolute;
    color: white;
    height: 5vh;
    width: 100%;
    gap: 15px;
}

select {
    height: 5vh;
    font-size: 20px;
}

.speedbar {
    position: fixed;
    top: 100px;
    right: 5px;
    gap: 10px;
    display: grid;
    grid-template-columns: 1;
}

iframe {
    width: 100%;
    height: 100vh;
}

.arrow {
    width: 2vw;
    display: flex;
    position: absolute;
    top: 5px;
    left: 0px;
    cursor: pointer;
}

.arrow span.open {
    display: block;
    width: 1vw;
    height: 1vw;
    border-bottom: 5px solid white;
    border-right: 5px solid white;
    transform: rotate(-45deg);
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

.arrowc {
    width: 2vw;
    display: flex;
    justify-content: end;
    position: absolute;
    top: 5px;
    right: 0px;
    cursor: pointer;
}

.arrowc span.close {
    display: block;
    width: 1vw;
    height: 1vw;
    border-bottom: 5px solid white;
    border-left: 5px solid white;
    transform: rotate(45deg);
    animation: animatec 2s infinite;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(-10px, -10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(-45deg) translate(0px, 0px);
    }
}

@keyframes animatec {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, -10px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(0px, 0px);
    }
}

button {
    padding: 5px  20px;
}