body {
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 50px;
    background-color: #20202c;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    color: #f6bb20;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #f6bb20;
    text-decoration: underline;
    text-decoration-color: white;

}

.loading {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #f6bb20;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    margin-top: -120px;
    -webkit-animation: spin 1s linear infinite;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 300px) and (max-width: 450px) {
    p {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
    p {
        font-size: 25px;
    }
}