@font-face {
    font-family: font;
    src: url(Cubic_11_1.100_R.ttf);
}

body {
    margin: 0;
    background-color: #121212;
    width: 100vw;
    height: 100dvh;
    font-family: font;
}


.container {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#start {
    position: absolute;
    bottom: 0%;
    margin-bottom: 50px;
    font-size: xx-large;
    color: snow;
    border: 2px solid snow;
    width: 300px;
    text-align: center;
    border-radius: 4px;
    padding: 15px 0;
    cursor: pointer;
    animation: fadeIn .5s ease-in-out;
}

#menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 16px;
    height: 400px;
    width: 300px;
    box-shadow: 0px 0px 50px 5px snow;
    overflow: hidden;
    transition: all 1s;
    z-index: 3;
}

#menu div {
    display: flex;
    justify-content: center;
    align-items: center;
    color: snow;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#menu input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: aqua;
    cursor: pointer;
}

#menu img {
    position: absolute;
    transition: transform 0.5s ease-in-out;
}

#confirm {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 9%, rgba(0, 0, 0, .5) 10%, rgba(0, 0, 0, .5) 100%);
    z-index: 999;
    width: 300px;
    height: 400px;
    border-radius: 16px;
    z-index: 999;
}

#confirm p {
    color: snow;
    position: absolute;
    bottom: 0;
    font-size: 1.5em;
    font-weight: 900;
    text-shadow: 5px 5px #000000;
    width: 100%;
    text-align: center;
}

#circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    border: 3px solid #9F353A;
    border-radius: 50%;
    position: absolute;
    top: 190px;
    left: 140px;
}

#dot {
    width: 2px;
    height: 2px;
    background-color: #9F353A;
    border-radius: 50%;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}