:root{
    --darkgreen: #b4400e;
    --lightgreen:#ff9365;
    --white: #ffffff;
}

@font-face {
    font-family: "sef";
    src: url("SueEllenFrancisco-Regular.ttf");
  }

@font-face {
    font-family: "rbt";
    src: url("Roboto-Bold.ttf");
  }

.button{
    font-family: "rbt";
    font-weight: bold;
    background-color: var(--darkgreen);
    color:var(--white);
    text-decoration: none;
    text-align:center;
    padding:14px 25px;
    margin:14px 25px;
    display:inline-block;
    border-radius: 30px;
    border-style:none;
}

.button:hover{
    background-color: #505050;
}

html{
    padding: 0 0;
    margin: 0 0;
}

body{
    padding: 0 0;
    margin: 0 0;
    display:flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width:100vw;
    min-height:100vh;
    grid-template-columns: repeat();
    align-content:stretch;
    justify-content:space-between;

}

header{
    font-family: "sef";
    font-size: 3vw;

    background-color: var(--lightgreen);
    color:var(--white);
    flex-basis:10%;
    text-align: center;
    vertical-align: middle;
}

section{
    font-family: 'Courier New', Courier, monospace;
    align-self: center;
    min-height: 80%;
    margin: 10px 20px;
}

footer{
    font-family: "sef";
    font-size: 1vw;

    background-color: var(--lightgreen);
    color:var(--white);
    flex-basis:10%;
    text-align:center;
    vertical-align: middle;
}

h1{
    font-family: "sef";
    font-weight: normal;
    font-size: 2.5vw;

    text-align:center;
    margin:5px 0;

}
@media screen and (max-width: 1200px) {
    header {
        font-size: 36px;
     }
    footer {
        font-size: 12px;
    }
    h1{
        font-size: 30px;
    }
  }

input{
    font-family: 'Courier New', Courier, monospace;
    margin:5px 0;
    padding:5px 5px;
    border:none;
    outline:none;
    border-bottom: 2px solid var(--darkgreen);
}
input:focus{
    border-bottom:none;
    background-color: var(--lightgreen);
    border-radius: 2px;
}

select{
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    margin:5px 0;
    padding: 5px 20px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
}

table{border-collapse: collapse;}

th{
    padding: 5px 5px;
    background-color: var(--darkgreen);
    color:white;
}

tr:nth-child(even){background-color: #f2f2f2;}
tr:hover{background-color: #ddd;}

td{
    padding:5px 5px;
    border:1px solid #ddd;
}

@media screen and (max-width: 800px) {
    table{
        font-size: 2vw;
    }
  }