: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;
        
    }
    h3 {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: lighter;
        font-size: 1em;
        margin-bottom: -0.2%;
    }

    .colorist{
        position:absolute;
        margin-top:4.3em;
    }
    .contact {
        float: right;
    }

    a {
        color: var(--font-color);
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
    }
    a:hover {
        color: grey;
    }
    header {
        height: 3.5em;
    }
    .title {
        width: 200px;    
        float: left;
    }
    .title:hover {
        color: var(--font-color);
    }
    .menu {
        position: absolute;
        right:10%;
        margin-top: 4.3em;
    }
    hr {
        width: 100%;
        margin-top: 3em;
    }


    body {
        background-color: var(--bg-color);
        color: var(--font-color);
        width: 80%;
        min-height: max-content;
        padding: 50px;
        margin: auto;
        margin-top: 0;
    }
    .button {
        width: max-content;
        float: right;
        margin-top: 0px;
    }




    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
    }
    .photo {
        position: absolute;
        top: 24%;
        right: 50%;
        height: min-content;
        width: 25vw;
        display: none;
    }
    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .bio {
        position: absolute;
        margin-top: 2%;
        height: min-content;
        width: max-content;
        float: left;
    }
    .row {
        margin: auto;
        width: 100vw;
        height: 50vh;
        align-items: center;
        justify-content: center;
    }
    body::-webkit-scrollbar {
        display: none;
    }
    .modal::-webkit-scrollbar {
      display: none;
    }
    @media only screen and (max-device-width: 480px) {
        html {
          width: 100%;
        }

      body {
        min-width: 90%;
        padding: 1%;
        padding-top: 4%;
      }
      .menu {
        position: absolute;
        right:5%;
        margin-top: 4.3em;
      }
      h2 {
        font-size: 1.2em;
      }
      .photo {
          position: relative;
          top: auto;
          right: auto;
          width: 80%;
          float: none;
          margin: auto;
            margin-top: 5%;
            height: min-content;
      }
      .bio {
          position: relative;
          top: auto;
          left: auto;
          margin: auto;
          margin-top: 5%;
        height: min-content;
        width: max-content;
      }
      .row {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 10%;
          gap: 1%;
          width: auto;

          
      }
    }


    
