@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@600&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

body {
    background-color: #242424;
    margin: 0px;
    height: 100%;
}

.transition{
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-self: center;
    z-index: 1000;
    opacity: 1;
    background: black;
    pointer-events: none;
    transition: 0.5s ease;
}

.transition.is-active {
    bottom: 100%;
    opacity: 1;
    pointer-events: none;
    transition: 0.5s ease;
}

/* .transitionin2{
    position:fixed;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 1;
    background-color: black;
    pointer-events: none;
    transition: 0.5s ease;
}

.transitionin2.is-active {
    bottom: 50%;
    opacity: 1;
    pointer-events: none;
    transition: 0.5s ease;
} */

    /* NAVBAR */





/* .navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: purple;
} */

