body {
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-style: Bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.submit-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.submit-area #title {
    text-align: center;
    color: white;
    font-size: 4rem;
    margin: 0;
    padding: 0;
    text-shadow: 
        -3px -3px black,
         3px -3px black,
        -3px  3px black,
         3px  3px black,
        -3px  0px black,
         3px  0px black,
         0px  3px black,
         0px -3px black;
}

.submit-area #textbox {
    font-size: 2rem;
    padding: 10px;
    width: 600px;
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    margin: 10px;
}

.submit-area #button {
    color: white;
    background: linear-gradient(to right, #F70D0D, #FD4927);
    padding: 30px 30px;
    width: 620px;
    border-radius: 2vw;
    border: 1vw solid black;
    cursor: pointer;
    font-size: 5vw;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-style: Bold;
    margin: 10px;
    text-shadow: 
        -3px -3px black,
         3px -3px black,
        -3px  3px black,
         3px  3px black,
        -3px  0px black,
         3px  0px black,
         0px  3px black,
         0px -3px black;
}

