body {
    background-color: white;
    background: linear-gradient(180deg, rgba(0, 140, 255, .3) 0, rgba(0, 0, 255, 0));
    min-height: 100vh;
    margin: 0;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#nav-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

nav {
    background-color: rgba(255, 255, 255, 0.55);
    padding: 12px;
}

nav>div {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

footer {
    background-color: rgba(255, 255, 255, 0.55);
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.big-title {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

#main-logo {
    margin: 20px auto;
    text-align: center;
    width: 125px;
    height: 125px;
    display: block;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -4px;
}

#check-form {
    margin-top: 20px;
}

#check-form textarea {
    width: calc(100% - 36px);
    height: 250px;
    padding: 18px;
    font-size: 1em;
    font: inherit;
    border: 1px solid #ccc;
    border-radius: 18px;
    resize: vertical;
}

.button {
    text-align: center;
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1em;
    font: inherit;
    color: white;
    text-decoration: none;
    background-color: rgb(0, 111, 283);
    border: none;
    border-radius: 9999px;
    margin-left: auto;
    display: block;

    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 111, 238, 0.4) 0px 10px 15px -3px, rgba(0, 111, 238, 0.4) 0px 4px 6px -4px;
    transition: 0.5s;
}

.button:hover {
    opacity: 0.75;
}

.button:active {
    opacity: 0.5;
}

#result {
    padding-bottom: 5px;
    white-space: pre-wrap;
    text-align: justify;
}

#full-result-indicator {
    font-weight: 900;
    text-align: center;
    padding: 3px;
    margin: 10px auto;
    border-radius: 9999px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

#overall-result {
    text-align: center;
    font-size: 1.5em;
    font-weight: 400;
    margin-top: 40px;
}

#error-message {
    background-color: rgb(203, 64, 64);
    color: white;
    font-weight: 500;
    margin-top: 36px;
    text-align: center;
    padding: 32px;
    border-radius: 18px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

#loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loading-content {
    text-align: center;
    font-weight: 500;
    background-color: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.flex {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}
