*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    height: 100%;
}

.backgroundProperty{
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

#mainScreen{
    height: 70vh;
    width: 60%;
    margin-left: 20%;
    margin-top: 10%;
    background-color: white;
    border: 3px solid rgb(91, 227, 168);
    border-radius: 16px;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    box-shadow:  2px 3px 5px gray;
}

.columnStyle{
    margin: 15px;
    border: 2px solid rgba(0, 0, 0, 0.616);
    height: fit-content;
    border-radius: 10px/20px;
    background-color: rgba(243, 235, 235, 0.863);
}
.imageStyle{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
/* width */
::-webkit-scrollbar {
    width: 10px;
    top: 0;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: rgb(199, 188, 188); 
    box-shadow: inset 10px 3px 5px grey; 
    border:1.2px solid white;
    border-radius: 10px;
  }
   /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(203, 223, 222); 
    border: 1px solid white;
    border-radius: 10px; 
  }

  .columnStyle:hover {
    box-shadow: 0 0 10px black;
    transform: scale(0.96);
  }
    .columnStyle:after {
      opacity: 0;
    }
   