:root {
    --font-color: #343434;
    --bg-color: #fff;
}

[data-theme="dark"] {
    --font-color: white;
    --bg-color: #343434;
}
 h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2em;
    font-weight: lighter;
    margin-bottom: -0.3em;
    margin-top: 0cm;
}



h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    font-size: 1.3em;
    margin-top: 0%;
    margin: bottom 0;
    float: right;
}

.colorist {
    position:absolute;
    margin-top: 4.3em;

}

a {
    color: var(--font-color);
    text-decoration: none;
}
a:hover {
    color: grey;
}
header {
    height: 3.5em;
}
.title {
    width: 200px;    
    float: left;
}
.title:hover {
    color: var(--font-color);
}
.button {
    width: max-content;
    float: right;
    margin-top: 0px;
}
.menu {
    position: absolute;
    right:10%;
    margin-top: 4.3em;
}
hr {
    width: 100%;
    margin-top: 3em;
}
    div .image {
        height: 100%;
        width: 100%;
        position: relative;
    }

    div img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        position: relative;
        z-index: 0;
    }
    
    div .video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }

    body {
        background-color: var(--bg-color);
        color: var(--font-color);
        width: 80%;
        min-height: max-content;
        padding: 50px;
        margin: auto;
        margin-top: 0;
    }

    section {
        min-height: 70%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8%;
        align-items: center;
        justify-content: center;
        margin-top: 2%;
        margin-bottom: 2%;
    }

    .container {
        position: relative;
        width: 32.75%;
        display: inline-block;
        margin-bottom: 0.8%;
        overflow: hidden; 

      }

      .container img {
        display: block;
        width: 100%;
        height: auto;
        z-index: 0;
    }

      .container video {
        display: block;
        width: 100%;
        height: auto;
        z-index: 1;
      }
      
      .text {
        color: var(--font-color);
        font-family: Arial, Helvetica, sans-serif;
        font-size: 15px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
      }



    input[type=checkbox]{
        height: 0;
      width: 0;
        visibility: hidden;
    }
    label {
        cursor: pointer;
        text-indent: -9999px;
        width: 1em;
        height: 1em;
        background: var(--font-color);
        float: right;
        border-radius: 100px;
        position:relative
    }
    body::-webkit-scrollbar {
        display: none;
    }
    .modal::-webkit-scrollbar {
      display: none;
    }

    @media only screen and (max-device-width: 480px) {
        section {
            min-height: 70%;
            display: flex;
            flex-direction: column;
            gap: 0.3%;
            align-items: center;
            justify-content: center;
            margin-top: 4%;
            margin-bottom: 6%;
        }

        .container{
            width: 100%;
                }
        body {
            min-width: 90%;
            padding: 1%;
            padding-top: 4%;
        }
        html {
            width: 100%;
            height: fit-content;
        }
        .menu {
            position: absolute;
            right:5%;
            margin-top: 4.3em;
        }
        h2 {
            font-size: 1.2em;
        }

    }