@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=block');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Amatic SC", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    background-color: black;
}

p {
    margin: 0;
    font-size: 30px;
    text-align: center;
}

input {
    text-transform: uppercase;
}

input.reset {
    background-color: transparent;
    border: none;
    outline: none;
    font-family: 'Amatic SC', serif;
    padding: 0;
    font-weight: 700;
}

button.reset {
    -webkit-appearance: none;
    border-radius: 0;
    text-align: inherit;
    background: none;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
    border: none;
    color: inherit;
    font: inherit;
}

@keyframes flash {
    0% {
        color: #CE1D1D;
    }
    49% {
        color: #CE1D1D;
    }
    50% {
        color: #FFE102;
    }
    100% {
        color: #FFE102;
    }
}

.flash-text {
    animation: flash 1s infinite;
}

*::-webkit-scrollbar {
    width: 5px;
    background-color: white;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: #7C979D;
    border-radius: 10px;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease;
}

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

.fade-fast-enter-active,
.fade-fast-leave-active {
    transition: opacity 0.15s ease;
}

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

.slide-up-enter-active,
.slide-up-leave-active {
    transition: all 0.3s ease;
}

.slide-up-enter-from {
    opacity: 0;
    transform: translateY(100%);
}

.slide-up-leave-to {
    opacity: 0;
    transform: translateY(100%);
}