/**========================  Page Setup  ========================**/
* {
    margin: 0;
}
body {
    background-color: rgb(0, 0, 0);
    cursor:url(images/cursor.png), auto;
    box-sizing: border-box;
}

/**========================  Header  ========================**/
.header {
    background-image: url(images/2022-02-06_14.01.32.png);
    background-size: cover;
    background-position: center;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 0 10px;
    position: fixed;
    z-index: 1;
}
.header img {
    height: 60px;
    padding: 5px 0px 0px 5px;
    transition: transform .2s;
}
.header li {
    display: inline;
}
a {
    text-decoration: none;
    color: white;
    cursor:url(images/cursor.png), auto;
}
li a img:hover {
    transform:scale(1.3);
}
.header li img {
    height: 60px;
    margin-right: 15px;
}

/**========================  Body  ========================**/
.spacer {
    padding: 20px 100px 20px 100px;
    padding-top: 120px;
}
.content {
    font-family: 'Silkscreen', sans-serif;
    border: 10px solid transparent;
    border-style: inset;
    border-image: url(images/screen_border.png) 20 stretch;
    padding: 10px 20px 10px 20px;
    background-color: #0e6b61;
    color: #9cfc68;
}
.content .hero {
    padding-right: 0%;
}

.invert {
    background-color: #9cfc68;
    color: #0e6b61;
}

.s {
    font-size: 15px;
}
.m {
    font-size: 25px;
}
.l {
    font-size: 50px;
}
.table {
    display: flex;
}
.table-left {
    flex: 2;
    padding: 20px;
}
.table-right {
    flex: 2;
    padding: 20px;
}
.table-left img {
    max-width: 100%;
    height: auto;
    border: 10px solid transparent;
    border-style: inset;
    border-image: url(images/screen_border.png) 20 stretch;
}
.table-right img {
    max-width: 100%;
    height: auto;
    border: 10px solid transparent;
    border-image: url(images/screen_border.png) 20 stretch;
}
@keyframes shadowIn {
    from {filter: drop-shadow(0px 0px 0px black);}
    to {filter: drop-shadow(0px 0px 150px black);}
}
.table img:hover {
    filter: drop-shadow(0px 0px 150px black);
    animation-name: shadowIn;
    animation-duration: 150ms;

    transform:scale(1.08);
}
.table img {
    transition: transform .2s;
    margin:0 auto;
}


.footer img {
    width: 100%;
    image-rendering: crisp-edges;
}

.end {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 250px;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.sitemap {
    margin-bottom: 10px;
    background-color: black;
    padding: 5px 25px 5px 25px;
    border: 10px solid transparent;
}
@keyframes fadeIn {
    from {color: #0e6b61;}
    to {color: #9cfc68;}
}
@keyframes fadeOut {
    from {color: #9cfc68;}
    to {color: #0e6b61;}
}
.sitemap a {
    padding-left: 25px;
    padding-right: 25px;
    color: #0e6b61;
    animation-name: fadeOut;
    animation-duration: 2s;
}
.sitemap a:hover {
    color: #9cfc68;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}
