
.loginNotification {
    justify-items: center;
    color: var(--clr-accent);
    text-align:center;
}

.tutorial.btn {
    text-decoration: none;
}

div.options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; 
    justify-content: flex-start; 
    max-width: 100%;  
    overflow-x: hidden; 
}

a.btn {
    flex: 1 1 auto; 
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

div.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsl(241.22deg 23.44% 40.98%);
    display: none;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
  font-size: 2em;
  transition: color 0.2s;
  z-index: 99999;
}

.close-icon:hover {
  color: red;
}

.attribute_grid {
  display: grid;
  gap: 10px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  max-height:80vh;
  overflow-y:auto;
}

.attribute_one,
.attribute_final {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  height: 80px;
}