@font-face {
    font-family: 'HR';
    src: url('/fonts/HelveticaRounded/Static/Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'AR';
    src: url('/fonts/ArialRounded/Static/Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'MC';
    src: url('/fonts/Minecraft/Static/Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'DO';
    src: url('/fonts/Dosis/Variable.ttf') format('truetype');
}

gap {
    margin: 20px;
}

gap2 {
    margin: 15px;
}

gap3 {
    margin: 10px;
}

gap4 {
    margin: 0px;
}

.outdated {
    margin-top: 20px;
    width: 500px;
    animation: OutdatedText 2s infinite alternate ease-in-out;
}

t1 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'MC';
    color: rgb(255, 255, 255);
}

t2 {
    font-size: large;
    font-weight: bold;
    font-family: 'HR';
    color: rgb(255, 255, 255);
}

t3 {
    font-size: large;
    color: rgb(177, 177, 177);
    font-family: 'AR';
}

t4 {
    font-size: large;
    color: rgb(155, 155, 155);
    font-family: 'AR';
}

h1 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'MC';
    color: rgb(255, 255, 255);
}

h2 {
    font-size: large;
    font-weight: bold;
    font-family: 'HR';
    color: rgb(255, 255, 255);
}

h3 {
    font-size: large;
    color: rgb(177, 177, 177);
    font-family: 'AR';
}

p {
    font-size: medium;
    color: rgb(155, 155, 155);
    font-family: 'AR';
}

li {
    font-size: large;
    color: rgb(155, 155, 155);
    font-family: 'AR';
    text-align: left;
}

small {
    font-size: small;
    color: rgb(155, 155, 155);
    font-family: 'AR';
}

a {
    color: rgb(153, 153, 210);
    text-decoration: underline;
    font-family: 'AR';
}

a:hover {
    color: rgb(131, 131, 180);
    text-decoration: underline;
    font-size: large;
    font-family: 'AR';
}

body {
    margin: 0;
    padding: 0;
    min-height: 100dvh;
    background-color: rgb(60, 60, 60);
}

button {
    background-color: rgba(150, 150, 150, 0.1);
    color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 7px;
    cursor: pointer;
    font-family: 'AR';

    transition:
        background-color 0.3s ease,
        border 0.3s ease,
        padding 0.3s ease;
}

button.disabled {
    background-color: rgba(150, 100, 100, 0.1);
    color: rgb(200, 150, 150);
    border: 1px solid rgba(150, 100, 100, 0.2);
    padding: 10px 20px;
    border-radius: 7px;
    cursor: not-allowed;
    font-family: 'AR';

    transition:
        background-color 0.3s ease,
        border 0.3s ease,
        padding 0.3s ease;
}

button:hover {
    background-color: rgba(160, 130, 130, 0.2);
    border: 1px solid rgba(255, 190, 190, 0.3);
    padding: 12px 25px;
}

.mainbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color: rgba(150, 150, 150, 0.05);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    width: fit-content;
    height: fit-content;
    max-width: 90%;
    margin: auto;
    margin-top: 50px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color: rgba(150, 150, 150, 0.05);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    width: fit-content;
    height: fit-content;
    max-width: 90%;
    margin: auto;
    margin-top: 20px;
}

.boxYF {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color: rgba(150, 150, 150, 0.05);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    width: fit-content;
    height: fit-content;
    max-width: 90%;
    margin: auto;
    margin-top: 20px;
    animation: YellowFade 2s infinite alternate ease-in-out;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


@keyframes YellowFade {
    0% {
        background-color: rgba(125, 125, 0, 0.3);
    }

    100% {
        background-color: rgba(75, 75, 0, 0.3);
    }
}


@keyframes OutdatedText {
    0% {
        color: rgb(170, 100, 100);
    }

    100% {
        color: rgb(150, 80, 80);
    }
}