* {
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body {
    margin:  0;
    padding: 0;
}
nav {
    background-color: black;
    padding: 0 3%;
    color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    margin-top: 0%;
    width: -webkit-fill-available;
}
.headerContainer h1 {
    padding: 8% 20%;
    padding-top: 15%;
    text-align: -webkit-center;
    display: table-cell;
    background-color: antiquewhite;
}
 .mainContainer {
    padding: 5% 0;
    background-color: rgba(119, 58, 70, 0.74);
    color: rgb(9, 12, 12);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-evenly;
 }
 .mainContainer div {
    background-color: antiquewhite;
    padding: 1%;
    border-radius: 15px;
    border: 2px solid black;
    margin: 2% 0;
    max-width: 55vh;
    transition: 0.3s ease-out cubic-bezier(0.6, -0.28, 0.735, 0.045);
 }
 .mainContainer div:hover {
    border: 2px solid antiquewhite;
    background-color: aliceblue;
}
 .mainContainer div h1 {
    background-color: blueviolet;
    color: aliceblue;
    padding: 5%;
    margin: 0;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
 }
 .mainContainer div h1:hover {
    background-color: rgb(131, 10, 245);
    color: white;
 }
 .mainContainer div p, .mainContainer div ul li {
    font-size: 12px;
 }
 .mainContainer div h1 a {
    color: rgb(37, 219, 243);
    font-weight: 600;
    font-size: x-small;
    transition: 0.3s ease-out cubic-bezier(0.6, -0.28, 0.735, 0.045);
    border: 0.5px solid rgb(37, 219, 243);
    padding: 4.5px 7px;
    border-radius: 16px;
    text-decoration: none;
 }
 .mainContainer div h1 a:hover {
    color: #000;
    font-weight: 800;
    background-color: darkgrey;
    border: 0.5px solid #000;
 }
footer {
    background-color: black;
    padding: 3%;
    color: whitesmoke; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: -webkit-center;
}