body {
    font-family: Helvetica;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background: #BBDBD1;
    color: #093824;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
}

input {
    margin-bottom: 3vh;
    margin-left: auto;
    margin-right: auto;
}
form {
    text-align: center;
}

button {
    cursor: pointer;
    min-width: 0;
    width: 80%;
    font-size: 2rem;
    padding: 1.3rem 2.6rem;
    background: honeydew;
    border: 6px #BBDBD1;
    border-style: dashed solid;
    color: #093824;
    transition: 200ms;
}

button:hover {
    filter: brightness(1.05);
    transform: translateY(-5px);
    box-shadow: 0px 30px 200px rgba(255, 255, 255, 0.7);
}

button:active {
    transform: skew(-2deg) rotate(2deg);
}

.input_box {
    cursor: pointer;
    min-width: 0;
    width: 80%;
    font-size: 2rem;
    padding: 1.5vh 1.5vw;
    background: honeydew;
    border: 6px #BBDBD1;
    border-style: dashed solid;
    color: #093824;
    transition: 200ms;
}

.input_box:hover {
    filter: brightness(1.05);
    transform: translateY(-5px);
    box-shadow: 0px 30px 200px rgba(255, 255, 255, 0.7);
}


.input_box:active {
    transform: skew(-2deg) rotate(2deg);
}

.input_button {
    text-align: center;
    cursor: pointer;
    min-width: 0;
    width: 50%;
    font-size: 2rem;
    padding: 1.3rem 1.6rem;
    background: honeydew;
    border: 6px #BBDBD1;
    border-style: dashed solid;
    color: #093824;
    transition: 200ms;
}

.input_button:hover {
    filter: brightness(1.05);
}


span {
    position: absolute;
    top: 80vh;
    margin: 2rem 0;
    font-size: 1.7rem;
    color: #f5f4ee;
}
