@font-face {
    font-family: Determination;
    src: url("/assets/font/determination.otf");
}

body {
    background-color: black;
}

.text-main {
    color: white;
    font-family: Determination;
    font-size: 20px;
    font-smooth: none;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

.text-center {
    text-align: center;
}

.center-box {
    display: flex;
    justify-content: center;
    align-items: center; 
    margin:auto;
}

#title {
    font-size: 32px;
    animation: slideIn 0.5s ease-out forwards 1;
    margin-bottom: 25px;
}

.box {
    border-radius: 5px;
    border-style: solid;
    border-color: white;
    width: fit-content;
    background-color: black;
    padding-left: 20px;
    padding-right: 20px;
}

#latest-region {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 1;
    animation-delay: 0.5s;
}

#last-update-time {
    color:gray;
    margin-top: 15px;
    margin-bottom: 15px;
    white-space: pre-line;
    text-align: center;

    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 1;
    animation-delay: 0.5s;
}

#yesno {
    font-size: 32px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 1;
    animation-delay: 0.5s;
}

#title2 {
    font-size: 32px;
    opacity: 0;
    animation: slideIn 0.5s ease-out forwards 1;
    animation-delay: 1s;
}

.previous-box {
    padding: 25px;
    width: 440px;
    height: 275px
}

#previous {
    display: grid;
    grid-template-columns: repeat(2, 525px); 
    gap: 25px;
    width: 100%;
    place-items: center;
    justify-content: center; 
    align-content: center;
    padding-bottom: 25px;

    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 1;
    animation-delay: 1s;
}
@media (max-width: 1053px) {
    #previous {
        grid-template-columns: repeat(1, 525px); 
    }
}

#disclaimer {
    white-space: pre-line;
    width: 75%;
    color: gray;
    font-size: 16px;
}
@media (max-width: 1053px) {
    #disclaimer {
        width: 100%;
    }
}

#loading {
    margin: 75px;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}