*{  
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.navbar{
    background-color: black;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;   
    align-items: center;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 999;
}
 
.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 150px;
    z-index: 1;
    width: 100%;
    max-width: 2000px;
}

#navbar__logo{
    text-decoration: none;
    color: black;   
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 20px;
    font-size: 35px;
}

.navbar__menu{
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar__item{
    height: 40px;
    align-content: center;
}

.navbar__links{
    text-decoration: none;
    color: black;  
    display: flex;
    height: 100%;
    padding: 0 1rem;
}

.navbar__links:hover{
    color: blueviolet;
    transition: all 0.2s ease;
}

@media screen and (max-width: 1100px){
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 100px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
    }

    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background-color: black;
    }

    .navbar__menu.active{
        background-color: black;
        top: 80%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 1000;
        height: 36vh;
        font-size: 1.2rem;
    }

    #navbar__logo{
        margin-top: 0;
    }

    .navbar__toggle .bar{
        width: 20px;
        height: 3px;
        margin: 3px auto;
        padding: 0px;
        transition: all 0.3s ease-in-out;
        background: white;
        display: block;
    }

    .navbar__item{
        width: 100%;
    }

    .navbar__links{ 
        color: white;
        position: relative;
        text-align: center;
        width: 100%;
        display: table;
    }
    #mobile-menu{
        position: absolute;
        top: 10%;
        right: 3%;
        transform: translate(5%, 20%);
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(6px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-6px) rotate(-45deg);
    }
}

.caption{
    font-size: 15px;
    text-align: center;
}
.main__container{
    font-size: 20px;
    display: grid;
    grid-template-columns: 50% 50%;
}

.main__container h1{
    font-weight: 400;
    font-size: 35px;
}

.main__content{
    text-align: center;
    font-size: 20px;
    margin: auto 2em;
}

.main__content h1{
    width: 100%;
    font-size: 35px;
    font-weight: 400;
}


#main__img{
    margin-left: 1rem;
    margin-top: 20px;
    height: 90%;
    width: 90%;
}

@media screen and (max-width: 1100px){
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        margin: auto;
        width: 90%;
        height: 100%;
    }

    .main__content{
        width: 90%;
        text-align: center;
        margin: auto;
    }
    
    .center{
        width: 100%;
    }
    .center2{
        width: 70%;
    }
}

table, th, td{
    margin: 30px auto;
    border: 0.7px solid black;
    text-align: center;
}
th{
    background-color: goldenrod;
    color: black;
    font-weight: 500;
    font-style: italic;
}

.center{
    margin-top: 6vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center2{
    margin-top: 6vh;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.hobby-info{
    background-color: rgb(187, 224, 230);
    font-size: 20px;
    text-align: center;
    width: 80%;
    margin: auto;
    margin-bottom: 40px;
    padding: 1em 1em;
}

.collapsible {
    display: flex;
    justify-content: center;
    margin: 2em auto;
    background-color: white;
    color:black;
    cursor: pointer;
    padding: 18px;
    width: 70%;
    border: 2px solid black;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
  }
  
.active, .collapsible:hover {
    background-color: silver;
}
  
.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


.slideshow-container {
    position: relative;
    margin-top: 2em;
    display: flex;
    justify-self: center;
    width: 100%;
    height: 100%;
}
  

.mySlides {
    justify-self: center;
    margin: auto;
    display: none;
    height:500px;  
}

.prev, .next {
    background-color: gray;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


.text {
    color: black;
    font-size: 15px;
    font-weight: 300;
    padding: 0px 0px;
    bottom: 8px;
    width: 100%;
    text-align: center;
}



.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.0s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

#grad{
    background-image: linear-gradient(to bottom right, rgb(149, 184, 206), rgb(104, 127, 173));
}

#grad2{
    background-image: linear-gradient(to bottom right, rgb(160, 231, 191), rgb(134, 235, 118));
}

.footer__link-wrapper{
    display: flex;
}

#footer__logo{
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.social__icon-link
{
    color:black;
    font-size: 24px;
}

.social__media{
    margin: 6em 0em 0em 0em;
    max-width: 1000px;
    width: 100%;
}

.social__media-wrap{
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons{
    display: flex;
    justify-content: space-between;
    align-items: right;
    width: 240px;
}

.website__rights{
    color: black;
}

