#back-button {
position: absolute;
top: 10px;
left: 10px;
padding: 5px;
border: none;
background: none;
cursor: pointer;
font-size: 16px;
color: #333;
}

#back-button::before {
margin-right: 5px;
}
.content{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: #333;
}
html{
  background-image: url("assets/pexels-alexander-kovalev-2847648.jpg");
  height: 100vh;
  width: 100vw;
  overflow:hidden;
  background-size: cover;
}
.body{
  overflow:hidden;
}
  .options-container{
    margin: 40px 15%;
    width:70%;
    display: grid;
    place-items: center;
    position: absolute;
    padding: 10px 40px;
    bottom:0;

  }

  .project.container{
    width: 80vw;
    left: 10vw;
    height: 56vh;
    position: relative;
    top: 10vh;
    display: grid;
    grid-template-columns: repeat(7, 95px); /* Adjust the size as per your needs */
    grid-template-rows: repeat(6, 95px); /* Adjust the size as per your needs */
    min-height: 10vh;
    grid-gap: 40px;
  }

  .glass{
    position: absolute;
    background: var(--greyLightLight-1);
    width: 100%;
    height: 100%;
    filter: blur(1px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }
  label{
      background-size: 4rem 4rem !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-color: var(--greyLightLight-1);

    }
    .project.container > div{
      background-repeat: no-repeat;
      background-size: 80px 80px;
      height: 100%;
      border-radius: 10px;
      transition: all 0.18s ease-in-out;
      background-size: 67px 67px;
      background-position: center;
    }

    .project.container > div:hover{
        box-shadow: 1px 1px 5px 2.5px #5555;
        transition: all 0.05s ease-in-out;
      }

  label[for="C"]{
      background-image: url("assets/The_C_Programming_Language_logo.svg.png");
      
  }
  label[for="C++"]{
      background-image: url("assets/ISO_C++_Logo.svg.png");
  }
  label[for="Java"]{
      background-image: url("assets/Java_programming_language_logo.svg.png");
      background-size: 2rem 4rem !important;
  }
  label[for="Python"]{
      background-image: url("assets/python.png");
  }
  label[for="C#"]{
      background-image: url("assets/120px-C_Sharp_wordmark.svg.png");
  }
  label[for="CSS"]{
      background-image: url("assets/htmlcssjs.png");
  }
  label[for="Hardware"]{
      background-image: url("assets/cpu.png");
  }
  label[for="MySQL"]{
      background-image: url("assets/mysql.png");
      background-size: 6rem 6rem !important;
  }
  label[for="Android"]{
      background-image: url("assets/5f8dd220163d0.png");
      background-size: 8rem 4rem !important;
  }
  
  #overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
z-index: 999;
}

#white-screen {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
width: 400px;
padding: 20px;
border-radius: 10px;
text-align: center;
}

#back-button {
position: absolute;
top: 10px;
left: 10px;
}

.content img {
width: 100px;
height: 100px;
margin-bottom: 10px;
}

.content h2 {
font-size: 18px;
margin-bottom: 5px;
}

.content p {
font-size: 14px;
margin-bottom: 10px;
}
.copyrights{
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    display: inline-block;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;;
    bottom: 10px;
}
