/*

    by: Drew Hengehold, Hunter Ciarabellini
    last modified: 11 April 2025
    File: lab11.css

*/

form{
    display: flex;
    text-align: center;
    flex-direction: column;
    margin: 0 45%;
    gap: 0.3em;
    border: 0.03em solid black;
    padding: 0.8em;
}

h1{
    margin: 0 30%;
}

input[type = "submit"]{
    padding: 0.3em;
    border: none;
    background-color: #008000;
    color: #f5f5dc;
    border-radius: 0.2em;
}

footer{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.header{
    margin-left: 5%;
}

table{
    margin:0 auto;
    justify-self: center;
    border: 0.2em solid black;
    border-collapse: collapse;
}

th, td{
    border: 0.2em solid black;
    padding: 1em;
}

a.link{
    display:block;
    text-align: center;
    font-size: 1.3em;
}