* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    font-weight: 500;

    
}

.mobile_view {
    display: none;
}

.outfit-website {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.logo {
    width: 99.5%;
    height: auto;
    margin: 4%;
    padding-top: 5%;
}

a {text-decoration: none; color: black; }


.sidebar {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    width: 20%;
    

}

.social_media {
  display: flex !important;
  position: absolute;
  left: 11%;
  top: 59%;
  width: 100%;

}

.fa-brands:hover{
    color: #B0E0E6 !important;

}

.copyright {
    position: fixed;
    bottom: 0;
    padding: 1%;
    color: rgb(167, 167, 167);
    
}

.sidebar ul li a {
    color: grey;
    position: absolute;
    left: 10%;
    width: 60%;
    font-size: 15px;
    margin: 10px;
    
}

.sidebar li {
    margin-top: 10px;
}

ul.no-bullets {
  list-style-type: none;
}

.illustration:hover{
    color: black;
}

.comic:hover{
    color: black;
}

.background:hover{
    color: black;
}

.character:hover{
    color: black;
}

.about:hover{
    color: black;
}

/*gallery*/

.gallery_container {
    position: relative;
    left: 22%;
    margin: 3%;
    padding: none;
    height: 75vh;
    width: 65vw;
    align-items: center;
    justify-content: center;
}

.gallery_container {
    position: relative;
    left: 22%;
    max-width: 900px;
    max-height:600px;
    
}

.gallery_container .slides {
    width: 100%;
    height: calc(100% - 40px);
    position: relative;
    overflow: hidden;
}

.slides img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    background-size: 900px 600px;
    background-color: white;
}

.gallery_container .slides img:not(.active) {
    top: 0;
    left: -100%;
}


.prev .next {
    position: relative;
    top: 85%;
    
}

.prev {
    margin-right: 1%;
}

.buttons button {
    text-align: none;
    background-color: transparent;
    color: grey;
    cursor: pointer;
    font-size: 20px;
    border: none;
}


.next:hover {
    color: rgb(0, 0, 0) !important;
}

.prev:hover {
    color: rgb(0, 0, 0) !important;
}

@keyframes next1 {
    from{
        left: 0%;
    }
    to{
        left: -100%;
    }
}

@keyframes next2 {
    from{
        left: 100%;
    }
    to{
        left: 0%;
    }
}

@keyframes prev1 {
    from{
        left: 0%;
    }
    to{
        left: 100%;
    }
}

@keyframes prev2 {
    from{
        left: -100%;
    }
    to{
        left: 0%;
    }
}

