/* UNIVERSAL SCREEN */
html {
    margin: 0;
    padding: 0;
    font-family: 'Sora', sans-serif;
    color: #ababab;
    background-color: #000000;
}
a {
    color: inherit;
    text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.Center {
    display: flex;
    justify-content: center;
    margin-top: 0.25%;
    margin-bottom: 0.25%;
}

.FontSize {
    font-size: 2em;
}



/* 4K SCREEN 3840 x 2160 */
@media only screen and (min-width: 2160px) {

}

/* HD SCREEN 1920 x 1080 */
@media only screen and (min-width: 1920px) and (max-width: 1920px) {
    .FontSize {
        font-size: 1.5em;
    }
}


/* iPhone 13 */
@media only screen and (max-width: 430px) {
    img {
        width: 150px;
        height: 61.50px;
    }

    .FontSize {
        font-size: 0.75em;
    }
}

/* IPAD */
@media only screen and (min-width: 600px) and (max-width: 1180px) {

}