@font-face {
    font-family: "Tofik";
    src: url(./Tofik.ttf);
}

body {
    background-color: rgb(85, 108, 82);
    color: rgb(42, 191, 9);
    margin: 0;
    font-family: "Tofik";
}

#top {
    background-color: rgb(42, 191, 9);
    color: rgb(31, 255, 2);
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#main {
    padding: 1rem;
}

button {
    padding: 0.3rem;
    background: linear-gradient(90deg, rgba(3, 26, 0, 1) 0%, rgba(165, 255, 163, 1) 100%);
    border: 2px solid black;
    color: rgb(223, 255, 223);
    font-size: 2rem;
}

button:hover {
    background: linear-gradient(90deg, rgba(16, 107, 4, 1) 0%, rgba(240, 255, 240, 1) 100%);
    cursor: pointer;
    font-size: 2.3rem;
}

/* RATING POPUP */
#rate {
    display: none !important;

    position: fixed;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 50%;

    transform: translate(-50%, -50%);

    padding: 1rem;

    background-color: rgba(0, 0, 0, 0.8);
    color: rgb(42, 191, 9);
    z-index: 9999 !important;
}

.ratecoin {
    font-size: 1.5rem;
    width: 12%;
    height: 3rem;
    background: linear-gradient(90deg, yellow, lightyellow);
    color: black;
}

#ratetext {
    width: 100%;
    height: 50%;
    margin-top: 10px;
    background-color: rgb(42, 191, 9);
    color: rgb(85, 108, 82);
}

#submit {
    margin-top: 10px;
}

#changelog {
    width: 100%;
    height: 200px;
}

textarea {
    width: 100%;
    height: 50%;
    margin-top: 10px;
    background-color: rgb(42, 191, 9);
    color: rgb(85, 108, 82);
}


