nav ol
{
    list-style-type: none;
    padding: 0;
}

nav ol li
{
    /* float: left; */
    /* display: inline-block;
    text-align: center;  */
}
nav ol li a
{
    display: list-item;
    width: 130px;
    height: 40px;
    color: #8b8b8b;
    text-decoration: none;    
    margin: 5px;
    text-align: center;
    line-height: 75px;
    font-size: 20px;
}

/* From uiverse.io by @Tiagoadag */
.card img
{
    height: 25px;
}
  
.card
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #806000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    height: 50px;
    width: 200px;
    border-radius: 0 20px 20px 0;
}
  
.card::before, .card::after
{
    position: absolute;
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
    transition: 0.25s linear;
    z-index: 1;
}
  
.card::before
{
    content: "";
    left: 0;
    justify-content: flex-end;
    background-color: #e1a900;
}
  
.card::after
{
    content: "";
    right: 0;
    justify-content: flex-start;
    background-color: #e1a900;
}
  
.card:hover
{
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
  
.card:hover span
{
    opacity: 0;
    z-index: -3;
}
  
.card:hover::before
{
    opacity: 0.5;
    transform: translateY(-100%);
}
  
.card:hover::after
{
    opacity: 0.5;
    transform: translateY(100%);
}
  
.card span
{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #806000;
    font-family: 'Fira Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.25s;
    z-index: 2;
}
  
.card .social-link
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    color: #806000;
    font-size: 24px;
    text-decoration: none;
    transition: 0.25s;
}
  
.card .social-link img
{
    text-shadow: 1px 1px rgba(31, 74, 121, 0.7);
    transform: scale(1);
}
  
.card .social-link:hover
{
    background-color: #806000;
    animation: bounce_613 0.4s linear;
}
  
@keyframes bounce_613
{
    50%
    {
      transform: scale(1.4);
    }
}

#footerbackground
{
    min-height: 25vw;
    background-image: url("../images/likePicture2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;    
    position: relative; /*overflow fix*/
    right: 17px;        /*overflow fix*/
}
#footerCanvas
{
    width: 40%;
}
#footerlinks
{
    display: flex;
    flex-direction: column;
    width: 45%;
}
#footerlinks a
{
    text-decoration: none;
    width: fit-content;
    margin: auto;
    color: white;
    font-size: 2.5vw;
}
#footerLogo
{
    width: 43%;
}
#card
{
    display: block;
    margin-bottom: 5vh;
}
@media only screen and (max-width: 900px)
{
    .card
    {
        display: none;
        margin: 0;
    }
    #footerbackground
    {
        min-height: 50vh;
        background-size: 200vw;
    }
    #footerCanvas
    {
        width: 80%
    }
    #footerlinks a
    {
        font-size: 5vw;
    }
}