* {
    font-family: 'Roboto Slab', serif;
    hyphens: auto;
}

body {
    overflow: hidden;
}

.Logo:first-child {
    left: 96px;
    top: 150px;
    font-size: 184px;
    padding-top: 10px;
}

.Logo:last-child {
    left: 621px;
    top: 330px;
    font-size: 130px;
    line-height: 190px;
    z-index: -1;
}


.Logo {
    background: #AFB63F;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.39);
    transform: matrix(1, -0.08, 0, 1, 0, 0);

    font-family: 'Cervo Neue', sans-serif;
    font-style: normal;
    font-weight: 800;

    text-align: center;
    text-transform: uppercase;

    color: #FFFFFF;
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    padding: 0 30px;
}

.Button {
    position: relative;
    width: 310px;
    height: 310px;
    left: 805px;
    top: 628px;
    cursor: pointer;

    border-radius: 50%;
    background: radial-gradient(86.94% 86.94% at 38.5% 28.57%, #E30613 40%, #bb040d 100%);

    animation: press 3.6s ease-out;
    animation-iteration-count: infinite;
}

@keyframes press {
    15% {
        transform: scale(1, 1);
    }
    16.66% {
        transform: scale(0.9, 0.9);
    }
    25% {
        transform: scale(1, 1);
    }
}

.Button:before{
    position: absolute;
    content: "";
    display: block;
    background: #E30613;
    z-index: -10;
    width: 100%;
    height: 100%;
    border-radius: 9999px;

    animation: pulsate 1.2s ease-out;
    animation-iteration-count: infinite;
}



@keyframes pulsate {
    0% {
        transform: scale(0.5, 0.5);
        opacity: 0;
    }
    49.99%{
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.35, 1.35);
        opacity: 0;
    }
}


.Fruit {
    text-align: center;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}

.Fruit img {
    object-fit: contain;
    padding: 26px;
}

.Fruit__Title {
    display: inline-block;
    padding: 0 10px;

    font-family: 'Cervo Neue', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 46px;
    line-height: 61px;
    text-align: center;
    text-transform: uppercase;

    color: #FFFFFF;

    transform: matrix(1, -0.08, 0, 1, 0, 0);
    background: #E5B67D;
    margin-bottom: 20px;
}

#Frame, #Frame__Animation, #Frame__Animation--correct {
    position: fixed;
    width: 420px;
    height: 460px;
    left: 750px;
    top: 460px;

    border: 12px solid #E30613;
    box-sizing: border-box;
    border-radius: 50px;
    z-index: 1;
}

#Frame__Animation {
    animation: framePulsate 0.5s ease-out;
    animation-iteration-count: 1;
}

#Frame__Animation--correct {
    animation: framePulsate 0.4s ease-out;
    animation-iteration-count: 2;
}

@keyframes framePulsate {
    0% {
        transform: scale(1, 1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
        border-radius: 80px;
    }
}

#Question {
    margin: 45px auto;

    /*width: 1656px;*/
    max-width: 1800px;
    height: 314px;
    left: 125px;
    top: 65px;

    font-style: normal;
    font-weight: 400;
    font-size: 75px;
    line-height: 99px;
    text-align: center;

    color: #000000;
}

#Question div{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

#Question div span{
    background: lightgray;
    color: white;
    padding: 3px 100px;
    transform: matrix(1, -0.08, 0, 1, 0, 0);
    display: inline-block;
    font-family: 'Cervo Neue', sans-serif;
    line-height: 1;
}

.Result {
    user-select: none;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 30px 60px;
    line-height: 1;

    font-family: 'Cervo Neue', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 328px;
    text-align: center;
    text-transform: uppercase;

    color: #FFFFFF;

    transform: matrix(1, -0.08, 0, 1, 0, 0) translate(-50%, -50%);
    z-index: 2;

    animation: result 0.2s ease-out, result-fadeout 0.3s ease-out 1.7s forwards;
}

@keyframes result {
    0% {
        transform: matrix(1, -0.08, 0, 1, 0, 0) translate(-50%, -50%) scale(0.5, 0.5);
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes result-fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: matrix(1, -0.08, 0, 1, 0, 0) translate(-50%, -50%) scale(1.2, 1.2);
    }
}


.Result:before{
    content: "";
    background: #E30613;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: result-grow 0.6s ease-out;
}

.Result.Result--correct:before{
    background: #AFB63F;
}


@keyframes result-grow {
    0% {
        transform: scale(1, 1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2, 1.5);
        border-radius: 50px;
        opacity: 0;
    }
}


.Result--correct {
    background: #AFB63F;
}

.Result--wrong {
    background: #E30613;
}

.FinalScreen {
    background: #E30613;
    height: 100vh;
    padding-top: 147px;
}

.FinalScreen__Score {
    font-weight: 400;
    font-size: 75px;
    line-height: 99px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 86px;
}

.FinalScreen__Score span {
    font-weight: 800;
}

.FinalScreen__Message {
    font-weight: 700;
    font-size: 174px;
    line-height: 197px;
    text-align: center;

    color: #FFFFFF;
}

#Roulette {
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

/* we will explain what these classes do next! */
.v-enter-active,
.v-leave-active {
  transition: opacity 0.3s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}