body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    background: rgb(13,217,255);
    background: linear-gradient(49deg, rgba(13,217,255,1) 0%, rgba(20,95,231,1) 50%, rgba(156,36,230,1) 100%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#text-xl {
    font-size: 4em;
    text-align: center;
}

#resultView {
    width: 100%;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    justify-content: center;
}

.header {
    font-size: 4em;
}

.main-row {
    justify-content:space-evenly;
    width: 100%;
}

@media(max-width: 512px) {
    .main-row {
        flex-direction: column;
    }
}