body {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: 3% 97%;
    grid-template-areas: 
        ". h"
        ". m";
    margin: 0px;
}
header {
    display: grid;
    grid-area: h;
}
main {
    display: grid;
    grid-area: m;
    font-size: 2vh;
    min-height: 85vh;
}
form {
    width: 80%;
    font-size: 1.3em;
    justify-content: center;
    justify-items: center;
}

input[type="text"] {
    width: 70%;
    height: auto;
    border:0.5px solid gray;
    border-radius: 1vh;
    opacity: 1;
    font-size: 2vh;
    margin-top: 15px;
    margin-left: 10px;
    padding: 10px;
}
input[type="date" i] {
    width: 70%;
    height: 100%;
    font-size: 2.5vh;
    margin-left: 10px;
    margin-top: 15px;
    cursor: pointer;
}
input[type="radio" i] {
    width: 3vh;
    height: 2vh;
    margin-top: 15px;
}
label {
    font-size: 2.3vh;
    margin-left: 10px;
}

.fontRed {
    color: red;
}
.fontWhite {
    color: white;
}

div {
    margin-top: 50px;
    padding: 0px;
    border: 0px;
    width: 100%;
    height: auto;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
select {
    width: 70%;
    height: auto;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 0.9em;
    overflow-y: scroll;
    margin-top: 15px;
    margin-left: 10px;
}
textarea {
    height: 100px;
    width: 70%;
    font-size: 2.5vh;
    border-radius: 1vh;
    margin-left: 10px;
    margin-top: 15px;
}
input[type="datetime-local" i] {
    width: 70%;
    font-size: 2.3vh;
    margin-top: 15px;
    margin-left: 10px;
    cursor: pointer;
}
input[type="submit"] {
    background-color: #1e6fff;
    border: none;
    border-radius: 1vh;
    color: #fff;
    font-size: 2.5vh;
    height: 5vh;
    width: 40%;
    margin-top: 5vh;
    margin-bottom: 10vh;
	margin-left: 10%;
}
input:hover[type="submit"] {
    cursor: pointer;
}

@media screen and (max-width: 640px) {
    body {
        grid-template-columns: 20% 80%;
        grid-template-rows: 2% 98%;
    }
    main {
        font-size: 1.8vh;
    }
    textarea {
        width: 90%;
    }
}