body {
    font-family: "Breezeblocks", "PT Sans", Calibri, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(125, 141, 133);
    color: white;
    overflow-x: hidden;
}
.schedule-header{
    display: none;
}
form {
    width: 400px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.249);
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}
form label {
    margin-top: 3rem;
    font-size: 5rem;
}
form input{ 
    margin-top: 1rem;
    width: 60%;
    height: 5%;
}
form button {
    margin-top: 3rem;
    width: 60%;
    height: 8%;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    background-color: white;
}
#textbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
    width: 100%;
    text-align: center;
}
#textbox p {
    font-family:'Courier New', Courier, monospace;
    font-size: .9rem;
    color: rgb(255, 255, 255);
    font-weight: 700;
}

@media only screen and (max-width: 600px) {

    .schedule-header{
        display: flex;
        justify-content: center;
        font-size: 6rem;
        color: white;
        padding-top: 6rem;
        height: 6rem;
    }
    form {
        width: 300px;
        height: 500px;
    }
    form label {
        font-size: 4rem;
    }
    form button {
        margin-top: 2.3rem;
    }
    #textbox {
        margin-top: 1rem;
    }
    #textbox p {
        font-size: .65rem;
    }
}

@media only screen and (max-width: 380px) {

}