body {
    min-height: 100vh; 
    display: grid;
    grid-template-rows: auto 1fr auto; 
    overflow-x: hidden;    
    overflow-y: auto;        
}

main {
    background: linear-gradient(rgb(11, 1, 11), white, rgb(11, 1, 11));
    color: white;
    overflow: visible; 
    display: flex;
    flex-direction: row;
    align-items: center;
}

main img {
    display: block;
    margin: 2rem auto;
    height: auto;
    width: 20vw;
}

form{
    width: 30vw;
    background-color: rgba(0, 0, 0, 0.3);
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
    align-items: center;
    border-radius: 10px;
}

input, textarea, p{
    display: block;
    width: 20vw;
    margin: 10px auto;
    box-sizing: border-box;
    border-radius: 5px;
    outline: none;
    border: none;
}

textarea{
    height: 20vh;
}

input[type="submit"]{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

input[type="submit"]:hover{
    background-color: rgb(0, 0, 0);
    cursor: pointer;
    color: rgb(255, 255, 255);
}