/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    .mySlides {display: none}
    img {vertical-align: middle}
}

body {
  background-color: black;
  height: 1080px;
  color: white;
  font-family: Verdana;
}




/* NAV */

a 
{
    cursor: pointer;
}

.navar 
{
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(100,0,100,0.6);
}

.nav-container 
{
    /* width: 2560px; */
    margin: auto;
}

.nav-checkbox 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 10px 0;
}

.logo 
{
    text-decoration: none;
    color: #fff;
    padding-left: 10px; 
}

.tab-nav 
{
    outline: none;
    display: none;
}

.tab-nav-label 
{
    display: none;
    color: #fff;
}

.tab-content 
{
    grid-column: 3;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-content li 
{
    display: inline-block;
    padding-right: 10px; 
}

.tab-content li a 
{
    text-decoration: none;
    color: #fff;
    position: relative;
}

.tab-content li a::before 
{
    content: '';
    display: block;
    height: 3px;
    background: #fff;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    transform-origin: left;
    transform: scale(0, 1);
    transition: transform ease-in-out 500ms;
}

.tab-content li a:hover::before 
{
    transform: scale(1,1);
}

.tab-content li a::after 
{
    content: '';
    display: block;
    height: 3px;
    background: #fff;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    transform-origin: right;
    transform: scale(0, 1);
    transition: transform ease-in-out 500ms;
}

.tab-content li a:hover::after 
{
    transform: scale(1,1);
}

@media screen and (max-width: 1280px) {
    .nav-container {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .tab-nav-label {
        display: grid;
        cursor: pointer;
        grid-column: 3;
        padding-right: 10px;
    }
    .tab-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-column: 1/4;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: all ease-in-out 0.4s;
        -o-transition: all ease-in-out 0.4s;
        -webkit-transition: all ease-in-out 0.4s;
     }
    .nav-checkbox input:checked ~ .tab-content {
        max-height: 400px;
    }
    .tab-content li {
        padding: 10px 0;
    }
}

/* Body */

h1 
{
  margin-top: 1.3em;
}