body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: darkslategray;
}

.loading_container {
    display: flex;

    justify-content: center;
}

.loading {
    background-color: lightblue;
    border-radius: 39%;
    height: 75px;
    width: 75px;
    margin: 9px 9px 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text_container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

p {
    height: 30px;
    font-family: "Consolas", monospace;
    font-size: 36px;
    font-weight: 700;
    color: #F2F2F2;
}