
body {
    background-color: #1d252c;
}

::-webkit-scrollbar {
  display: none;
}

body-2{
    color: white;
    display: flex;
    flex-direction: row;
    margin: 0 0 0 0;
    justify-content: space-around;
    align-items: center;
}

#logContainer{
width: 50vw;
height: 80vh;
border-width: 5px;
margin-top: 2vh;
margin-bottom: 2vh;
background-color: #009ade;
padding: 2vw;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
flex-direction: row;
border-radius: 50px;
}

h1,
h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 3rem);
}


.subjectButton {
font-family: 'Playfair Display', serif;
width: 15vw; 
height: 5vw;
border-radius: 50px;
background: linear-gradient(145deg, #f0f0f0, #cacaca);
-webkit-box-shadow: 0px 10px 13px -7px #000000,
  5px 5px 15px 0px rgba(0, 0, 0, 0);
box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 0px rgba(0, 0, 0, 0);

margin: 1vw;
display: flex;
align-items: center;
justify-content: center;
transition: box-shadow 1s ease-in-out;
text-decoration: none;
overflow: hidden;
font-size: clamp(1rem, 2vw, 4rem);
}

.subjectButton:hover {
    -webkit-box-shadow: inset 1px 20px 12px -5px rgba(0, 0, 0, 0.52);
    box-shadow: inset 1px 20px 12px -5px rgba(0, 0, 0, 0.52);
  
  }

  .subjectButtonHome {
font-family: 'Playfair Display', serif;
width: 20vw; 
height: 10vw;
border-radius: 50px;
background: linear-gradient(145deg, #f0f0f0, #cacaca);
-webkit-box-shadow: 0px 10px 13px -7px #000000,
  5px 5px 15px 0px rgba(0, 0, 0, 0);
box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 0px rgba(0, 0, 0, 0);

margin: 1vw;
display: flex;
align-items: center;
justify-content: center;
transition: box-shadow 1s ease-in-out;
text-decoration: none;
overflow: hidden;
font-size: clamp(1rem, 2vw, 4rem);
}

.subjectButtonHome:hover {
    -webkit-box-shadow: inset 1px 20px 12px -5px rgba(0, 0, 0, 0.52);
    box-shadow: inset 1px 20px 12px -5px rgba(0, 0, 0, 0.52);
  
  }

#mainButtonHolder{
width: 45vw;
border-width: 5px;
margin-top: 2vh;
margin-bottom: 2vh;
background-color: #009ade;
padding: 2vw;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
flex-direction: row;
border-radius: 50px;
-webkit-box-shadow: 0px 10px 13px -7px #000000,
  5px 5px 15px 0px rgba(0, 0, 0, 0);
box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 0px rgba(0, 0, 0, 0);

}

#logsButtonHolder{
width: 30vw;
border-width: 5px;
margin-top: 2vh;
margin-bottom: 2vh;
background-color: #009ade;
padding: 2vw;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
flex-direction: row;
border-radius: 50px;
-webkit-box-shadow: 0px 10px 13px -7px #000000,
  5px 5px 15px 0px rgba(0, 0, 0, 0);
box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 0px rgba(0, 0, 0, 0);

}

#side {  
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2vw;
  }
  #side img {
    width: 100%;
    height: auto;
  }

  #buttonInner{
  
    transform-origin: left;
      transform: translate(0vw,0); 
    color:rgba(0,0,0,0.8);
    text-decoration: none;
    filter:blur(0px); 
    
  }  

  /* @media (orientation: landscape) {
    body-2 {
      flex-direction: row;
      min-height: 100vh;
      align-items: center;
    }
    #mainButtonHolder {
      margin-right: 2vw;
      min-height: 80vh;
    }
    .subjectButton {
      width: 20vw;
      height: 10vw;
    }
  }
  
  @media (orientation: portrait) {
    body-2 {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 90vh;
    }
    #mainButtonHolder {
      width: 80vw;
      height: auto;
    }
    #side {
      width: 80%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 2vw;
    }
    .subjectButton {
      width: 30vw;
      height: 20vw;
      font-size: clamp(1.75rem, 3vw, 2.1rem);
    }
  } */

