body {
  font-size: 24pt;
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  height: 100vh;
  padding: 0;
  transition: background-color 1s ease;
  background-image: linear-gradient(to right, darkgray, lightgrey, lightgrey, darkgray);
}

::-webkit-scrollbar{width: 10px; height: 10px;}
::-webkit-scrollbar-thumb{background: lightgrey; border-radius: 10px;}
::-webkit-scrollbar-thumb:hover{background: grey;}

.card-container {
  margin-top: 4vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}
#detail{
  display: flex;
  text-align: justify;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  font-size: 22px;
  padding: 10px;
  width: 70vw;
  /*box-shadow: 0 0 0 2px white;*/
  margin: auto;
}
.rect-card {
  background-color: #2d2d2d;
  color: white;
  visibility: hidden;
  border-radius: 12px;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}
#about{
  background-color: #3f3f3f;
}
#project-section{
  gap: 60px;
  display: flex;
  align-items: space-evenly;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
#project-section button{
  border-radius: 12px;
  border: 1px solid #ffffff;
}
.project-card{
  padding: 10px;
  width: 240px;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}
.project-card:hover {
  transform: scale(1.03);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
#console-input{
  background-color: transparent;
  border: none;
  font-size: 16pt;
  font-family: typewriter;
  height: 24px;
  outline: none;
}
.rect-card:hover {
  transform: translateY(-8px);
  background-color: #3f3f3f;
}

#skip{
  color: blue;
  text-align: center;
  cursor: pointer;
}
#clock{
  height: 100px;
  width: 100px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
  font-size: 62pt;  
  color: black;         
  border: 1px dashed black;
}
#myImg{
  height: 290px;
  width: 290px;
  border-radius: 50%;
}
#startText {
  margin-top: 12vh;
  height: 100vh;
  text-align: center;
}
button {
  width: 80px;
}
#back {
  height: 100vh;
}
p {
  margin: 0;
}

@keyframes move2 {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media screen and (max-width:768px){
  .card-container {
    margin-top: 0vh;
  }
  .container{
    justify-items: space-between;
    flex-direction: column;
    align-items: center;
  }
}