main {
    background-color: lightgray;
    border: 0;
    border-radius: 10px;
    height: 90%;
    margin-top: 0;
    padding-bottom: 50px;
}
#container{
    display: flex;        
    flex-wrap: nowrap;    
    gap: 8px;             
    align-items: center;  
}
nav {
    background: midnightblue;
    border-radius: 10px;
    overflow-x: scroll;
}

.nav:not(#title, #home):hover{

    color: white;
}
.nav#title {
    padding: 1%;
    color: white;
    margin-left: 2px;
}
.nav {
    padding: 3px 5px;
    border-radius: 10px;
    margin: 0 5px;
    display: block;
}
.nav, button, .change {
    cursor: pointer;
}
.nav.main, .nav.footer{
    color: #9c9c9c;
}
h1 {
    display: inline-block;
    margin-left: 15vw;
    font-size: 50px;
}
#content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
#main-tabs, #exeat-activity {
    background-color: white;
    border-radius: 10px;
    padding: 5px;
    margin: 5px;
}
#tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
}
#tabs li {
    margin: 0 auto;
    padding: 2px 0;
}
* {
    font-family: Arial, sans-serif;
}
a {
    text-decoration: none;
}
a:link {
    color: black;
}
a:hover {
    background-color: hsla(39, 100%, 50%, 50%);
    border-radius: 5px;
    padding: 2px;
}
a:active, a:focus,
a:visited {
    color: black;
}
#exeat-activity {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.active {
    border: 5px green solid;
}
.not-active {
    border: 5px red solid;
}
button {
    background-color: hsl(39, 100%, 50%);
    border: 0;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 5px;
    padding: 10px;
    width: 90%;
}
button:active {
    background-color: gray;
    color: white;
}