@media (max-width: 768px){
  .form-floating {
    width: 80vw;
}
}
@media (min-width: 768px){
  .form-floating {
    width: 60vw;
}
} 

html, body {
    height: 100vh;
    background-color: #fcfcfd;
}

.main {
    height: 100%;
    font-family: 'VT323', monospace;
    font-size: large;
    text-align: center;
    margin-top: 25vh;
    background-color: #fcfcfd;
}

.form-floating {
    display: flex;
    display: block;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

#text-thing {
    background-color: rgb(124, 124, 124);
}
