body{
    background-color: gainsboro;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.header{
    background-color: rgb(70, 70, 70);
    box-shadow: 0px 5px 5px 0px  rgba(70, 70, 70, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    padding: 20px;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    z-index: 5;
}

@media (max-width: 1000px){
    .header{
        height: auto;
    }
}

    .logo{
        transform: translate(0, 5px);
    }

    @media (max-width: 1000px){
        .logo{
            transform: translate(0, 0px);
        }
    }

    @media (max-width: 500px){
        .logo{
            transform: translate(2px, 20px);
        }
    }

    .header-title{
        display: inline-block;
        transform: translate(0, -10px);
        cursor: pointer;

        font-size: 50px;
        color: white;
    }

    @media (max-width: 1000px){
        .header-title{
            font-size: 30px;
            transform: translate(0, 3px);
        }
    }

    @media (max-width: 700px){
        .header-title{
            font-size: 20px;
            transform: translate(0, 7px);
        }
    }

    @media (max-width: 500px){
        .header-title-piece{
            display: block;
        }
    }

    .header-social{
        transform: translate(0, 20px);
    }

    @media (max-width: 700px){
        .header-social{
            max-width: 150px;
            transform: translate(0, 0);
        }
    }

    @media (max-width: 500px){
        .header-social{
            transform: translate(0, 20px);
        }
    }

    .titleWithLogo{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

.main{
    margin-top: 120px;

    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

@media (max-width: 700px){
    .main{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 200px;
    }
}

@media (max-width: 500px){
    .main{
        margin-top: 220px;
    }
}

    .navigation{
        width: 120px;
        height: auto;
        background-color: rgb(104, 104, 104);
        box-shadow: 0px 5px 5px 0px  rgba(70, 70, 70, 0.5);
        padding: 10px;
        position: fixed;
        border-radius: 10px;
        left: 8px;

        color: white;
        font-size: 20px;
    }

    .navigation a {
        color: white;
        text-decoration: none;
    }

    @media (max-width: 700px){
        .navigation{
            top: 90px;
            width: 90%;
            font-size: 12px;
        }
    }

    @media (max-width: 500px){
        .navigation{
            top: 120px;
        }
    }

        .navigation-button{
            display: block;
            font-weight: bolder;
            line-height: 30px;
            cursor: pointer;
            padding: 5px 0px;
        }

        @media (max-width: 700px){
            .navigation-button{
                display: inline;
                padding: 0px 10px;
                margin: 0px;
            }
        }

        .navigation-button:hover {
            box-sizing: content-box;
            background: linear-gradient(to right, rgb(110, 98, 31), rgb(104, 104, 104));
            border: 2px solid gold;
            padding: 10px;
            border-radius: 10px;
            min-width: 150px;
        }

        .divider{
            content:"";
            width: 80%;
            height: 2px;
            background-color: gold;
            display: block;
            margin: 20px 0px;
        }

        @media (max-width: 700px){
            .divider{
                margin: 2px 0px;
                width: 100%;
            }
        }

    .content{
        width: 100%;
        text-align: center;
        height: auto;
        margin: 0px 50px 20px 150px;
        background-color: rgba(128, 128, 128, 0.5);
        padding: 50px;
    }

    @media (max-width: 700px){
        .content{
            margin: 0px 20px;
            width: 80%;
            padding: 20px;
        }
    }

    .section-divider {
        background-color: gold;
        content:"";
        width: 100%;
        height: 2px;
        margin-bottom: 20px;
        display: block;
    }

    .section-title {
        color: white;
    }

    .section-subtitle {
        color: gold;
    }

/* HOME */
/* /////////////////////////////////////////////// */

.presentation {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.presentationInfo {
    font-size: 30px;
    padding: 60px;
    text-align: left;
}

@media (max-width: 1200px){
    .presentationInfo{
        font-size: 20px;
        padding: 40px;
    }
}

@media (max-width: 900px){
    .presentationInfo{
        font-size: 15px;
        padding: 20px;
    }
}

@media (max-width: 500px){
    .presentationInfo{
        font-size: 10px;
        padding: 10px;
    }
}

.presentationDescription{
    font-size: 20px;
}

@media (max-width: 1200px){
    .presentationDescription{
        font-size: 18px;
    }
}

@media (max-width: 900px){
    .presentationDescription{
        font-size: 12px;
    }
}

@media (max-width: 500px){
    .presentationDescription{
        font-size: 8px;
    }
}

.speechBubble{
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    border: solid black 5px;
    box-shadow: -10px 10px rgba(0,0,0,0.3);
    padding: 30px;
    /* min-width: 200px; */
    max-width: 40%;
    /* min-height: 100px; */
    font-size: 30px;
    text-align: center;

    animation-iteration-count:infinite;
    animation-duration: 5s;
    animation-name: float;
}

@keyframes float{
    0% {
        transform: translate(0, 0);
        box-shadow: -10px 10px rgba(0,0,0,0.3);
    }
    50% {
        transform: translate(0, 20px);
        box-shadow: -10px 5px rgba(0,0,0,0.3);
    }
    100% {
        transform: translate(0, 0);
        box-shadow: -10px 10px rgba(0,0,0,0.3);
    }
}

@keyframes float-less{
    0% {
        transform: translate(0, 0);
        box-shadow: -10px 10px rgba(0,0,0,0.3);
    }
    50% {
        transform: translate(0, 5px);
        box-shadow: -10px 5px rgba(0,0,0,0.3);
    }
    100% {
        transform: translate(0, 0);
        box-shadow: -10px 10px rgba(0,0,0,0.3);
    }
}

@media (max-width: 1200px){
    .speechBubble{
        padding: 20px;
        font-size: 20px;
        border: solid black 3px;
    }
}

@media (max-width: 800px){
    .speechBubble{
        padding: 10px;
        font-size: 15px;
        border: solid black 2px;
        animation-name: float-less;
    }
}

@media (max-width: 500px){
    .speechBubble{
        font-size: 10px;
    }
}

/* GALLERY */
/* /////////////////////////////////////////////// */

.categories {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    height: 700px;
}

@media (max-width: 1600px){
    .categories{
        height: 400px;
    }
}

@media (max-width: 1200px){
    .categories{
        height: 300px;
    }
}

@media (max-width: 800px){
    .categories{
        height: auto;
        flex-direction: column;
    }
}

.category {
    width: 26%;
    padding: 13% 10px;
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);
    transition: box-shadow 500ms, width 500ms, height 500ms;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

@media (max-width: 800px){
    .category{
        width: 100%;
        height: 100px;
        padding: 10px;
        margin: 8px 30px;
        transition: box-shadow 500ms, height 2s;
    }
}

.category:hover {
    box-shadow: 0 0 5px 5px white;
    width: 28%;
    padding: 14% 10px;
}

@media (max-width: 800px){
    .category:hover{
        width: 100%;
        height: 110px;
        box-shadow: 0 0 5px 5px white;
    }
}

.category-title{
    padding:5px;
    margin:10px;
    background-color: rgba(255,255,255,0.7);
}

/* ILLUSTRATION, DESIGN & FANART */
/* /////////////////////////////////////////////// */

#overlay {
    background-color: black;
    opacity: 0.7;
    width: 100%;
    height: 100vh;
    position: fixed;
    top:0px;
    left:0px;
    z-index: 6;
    display: none;
    cursor: pointer;
}

#imageShown {
    width: 80%;
    height:80vh;
    background-size: contain;
    background-position: center;
    z-index: 7;
    position: fixed;
    left: 10%;
    top: 10vh;
    background-repeat: no-repeat;
    cursor: pointer;
    display: none;
}

.imageThumb {
    width: 16%;
    padding: 8% 10px;
    border: solid 2px rgb(223, 223, 223);
    box-sizing: border-box;
    margin: 5px;
    opacity: 0.5;
    transition: opacity 500ms, border 500ms;
    cursor: pointer;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.imageThumb:hover {
    opacity: 1;
    border: solid 2px white;
}

/* ANIMATION */
/* /////////////////////////////////////////////// */

.animation-box {
    width: 80%;
    margin: 20px 10%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    transition: box-shadow 500ms;
    box-shadow: 0px rgb(223, 223, 223);
}

.animation-box:hover {
    box-shadow: 0 0 5px 5px rgba(225,225,225,0.5);
}

.video-thumb {
    width: 25%;
    padding: 8% 10px;
    border: solid 2px rgb(223, 223, 223);
    box-sizing: border-box;
    margin: 15px;
    margin-top: 60px;
    cursor: pointer;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.video-info{
    width: 70%;
    word-wrap: break-word;
    margin-bottom: 20px;
}

/* CONTACT */
/* /////////////////////////////////////////////// */

.contact-info{
    text-align: left;
}