.main-section{
  position: relative;
}

.worksheet-wrapper{
  width: calc(100vw - 285px);
  position: absolute;
  right: 0;
  padding-top: 130px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.worksheet{
  width: 360px;
  height: 220px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.349);
  margin-bottom: 20px;  
  border-radius: 4px;
  position: relative;
}

.worksheet-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
  border-radius: 4px;
}

.worksheetLoad{
  background: linear-gradient(0.25turn, transparent, #fff, transparent),
    linear-gradient(#eee, #eee),
    radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
    linear-gradient(#eee, #eee);
  background-repeat: no-repeat;
  background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
  animation: loading 1.5s infinite;
  width: 360px;
  height: 220px;
  margin-bottom: 20px;
  box-shadow: none;
}

.add-icon{
  width: 30px;
}

.icon-hover{
  background-color: gold;
  padding: 2px;
  border-radius: 50%;
}

a{
  text-decoration: none;
}

a:hover{
  text-decoration:underline;
}


@keyframes loading {
  to {
    background-position: 315px 0, 0 0, 0 190px, 50px 195px;
  }
}

.textLoad {
  background: linear-gradient(0.25turn, transparent, #fff, transparent),
    linear-gradient(#eee, #eee),
    radial-gradient(38px circle at 19px 19px, #eee 50%, transparent 51%),
    linear-gradient(#eee, #eee);
  background-repeat: no-repeat;
  background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
  animation: textLoad 1.5s infinite;
  color: transparent;
  display: inline-block; 
  border-radius: 4px;
  padding: 3px;
  margin-top: 5px;
}

@keyframes textLoad {
  to {
    background-position: 315px 0, 0 0, 0 190px, 50px 195px;
  }
}


@media (max-height: 700px){


  a{
    text-decoration: none;
    font-size: 1.2rem !important;
  }
  
  .worksheet{
    zoom:0.6 !important;
  }

  .worksheet-wrapper{
    width: calc(100vw - 230px);
  }
  
}

@media (max-height: 900px){
  .worksheet{
    zoom: 0.8;
  }
}