body {
    margin: 0 !important;
    overflow: hidden;
}

main {
    background-image: repeating-linear-gradient(0deg, rgb(41, 41, 41) 0px, rgb(41, 41, 41) 1px,transparent 1px, transparent 21px),repeating-linear-gradient(90deg, rgb(41, 41, 41) 0px, rgb(41, 41, 41) 1px,transparent 1px, transparent 21px),linear-gradient(90deg, hsl(87,0%,9%),hsl(87,0%,9%));    height: 90dvh;

    display: flex;
    flex-direction: column;
    align-content: center; 
    align-items: center;
    justify-content: center;

    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#login { 
    background-color: #2c302e65;
    height: 30vh;
    width: 20vw;

    border-radius: 0.9em;
    padding: 2em;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    align-items: center;

    -webkit-box-shadow: 10px 8px 24px 0px rgba(44, 48, 46, 1);
    -moz-box-shadow: 10px 8px 24px 0px rgba(44, 48, 46, 1);
    box-shadow: 10px 4px 5px 0px rgba(44, 48, 46, 0.096);

    color: white;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2vh;
}

#login input {
    width: 15dvw;
    height: 3dvh;

    font-size: 2vh;
}

#login input[type="submit"] {
    width: 15dvw;
    background-color: #9AE19D;
    border-color: #9AE19D;
}

#login input[type="submit"]:hover {
    background-color: #28e931;
}

footer {
    background-color: #2C302E;
    height: 10dvh;

    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
}