.page {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Segoe UI Emoji";
    color: whitesmoke;
    background-color: #1b1b1f;
}

.description {
    text-align: center;
    font-size: larger;
    margin: 0.5em 3em 3em 3em;
    width: 600px;
}

.divider {
    width: 80%;
    border-width: 1px;
    border-style: solid;
    border-image-source: linear-gradient(120deg, #681d8b 30%, #154555);
    border-image-slice: 1;
}

.title {
    font-size: 4em;
    background: linear-gradient(120deg, #bd34fe 30%, #41d1ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.main-container {
    height: 100vh;
    width: 50vw;
    min-width: 700px;
    max-width: 1400px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#report {
    visibility: collapse;

    color: #1f2328;
    background-color: whitesmoke;
    padding: 3em;
    border-radius: 0.75em;

    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    margin-bottom: 50px;
}
