* {
    box-sizing: border-box;
}

/*Main*/
.main {
    color: rgb(61, 131, 77);
    font-family: Garamond, serif;
    background-color:black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mainflex{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
    gap:10px;
    padding:50px;
    text-align: center;
}

.mainflex > * {
    flex-grow: 1;
    border: 1px double rgb(61, 131, 77);
    padding: 0.5rem;
    overflow:hidden;
}

.banner{
    width:100%;
    height:75px;
}

.intro{
    width: 100%;
    height:135px;
}

.display{
    flex-grow:0;
    flex-shrink:0;
    text-align:center;
    padding: 0;
}

/*Links and Stuff*/
.linkflex{
    display:flex;
    flex-wrap:wrap;
    border:none;
    justify-content: space-around;
    width:40%;
    height:100%;
    gap:15px;
}

.linkflex > .links{
    flex-grow:1;
    min-width:250px;
    max-width:250px;
    padding:5px;
}

.links > * {
    text-align: center;
}
a{
    display: block;
    color: rgb(61, 131, 77);
    font-size:30px;
    font-weight:bold;
    padding-bottom: 7px;
    text-decoration:none;
}

a:hover{
    color:rgb(246, 247, 97);
}

