* { 
    margin: 0; padding: 0; box-sizing: border-box; 
}

body {
    background-color: rgb(5, 12, 148);
    color: #f7fbfc;
    font-family: verdana, Arial, Helvetica, sans-serif; 
    border: 8px solid rgb(3, 54 116);
    margin-bottom: 60px;
    padding: 20px;
    background-image: url(../images/digitalocean.png);
    background-size: cover;
    background-position: center;
    line-height: 1.5;
    letter-spacing: 1.2pt;
    }

    header {
    text-align: center;
    }
    
header h1 {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    border: 4px groove #c5d2d5;
    font-size: 3em;
    letter-spacing: 6px;
    text-shadow: 2px 2px 4px #222;
    padding: 15px;
    margin: 10px 30px;
    box-shadow: 2px 2px 2px #000000;
    background-color: #58cce678;    
}

nav {
     margin-top: 32px;
     text-align: center;
     
     
}

nav a {
    text-decoration: none;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    font-size: 1em;
    border: 4px groove #c5d2d5;
    box-shadow: 2px 2px 2px #000000;
    background-color: rgb(145, 150, 167);
    margin-top: 32px;
    color: ghostwhite; 
    padding: 5px 30px;  
    border-radius: 50px;
}

nav a:hover{
    box-shadow: 0 0 8px aqua;
background-color: rgb(150, 138, 135);
}

nav a:active{
    background-color: rgb(120, 111, 108);
    text-shadow: 0 0 3px aqua;
}

.box_container {
    min-height: 300px;
    background-color: transparent;
    display: flex; 
    flex-flow: row wrap;
    justify-content:flex-start; 
    align-items: flex-start; 
    padding: 20px;
}

.card1, .card2, .card3, .card4, .card5 {
    font-family: "Cinzel", serif;
    aspect-ratio: 1/1;
    color: #ffffff;
    flex: 0 0 12%;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin: 20px;
    font-size: 1em;
    text-shadow: 0 0 3px black;
    background-color: rgb(145, 150, 167);
    border-radius: 10px;
    border: 4px groove white;
    text-align: center;
}

.card1 img, .card2 img, .card3 img, .card4 img, .card5 img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
    border-bottom: 4px groove white;
}

.card1 img{
    object-position: 50% 70%;
}

.card1:hover{
    box-shadow: 0 0 8px rgb(212, 255, 0);
    filter: hue-rotate(140deg)
}
.card2:hover, .card3:hover, .card4:hover, .card5:hover {
box-shadow: 0 0 8px aqua;
background-color: rgb(150, 138, 135);
}

footer {
    text-align: center;
    font-size: 10pt;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgb(145, 150, 167);
    color:  ghostwhite;
    position: fixed;
    min-height: 100px;
    bottom: 0px; left: 0px;
    width: 100%;
}

sup {
    color: gold;
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
    font-size: 8pt;
}