.box1 {
    width: 300px;
    height: 260px;
    background: rgba(78, 78, 78, 0.103);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.7px);
    -webkit-backdrop-filter: blur(7.7px);
    border: 1px solid rgba(8, 1, 133, 1);
    position: relative;
    left: 230px;
    top: -80px;
}

.box1-text {
    position: relative;
    left: 35px;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    background-position: -200px;
    justify-content: center; 
    min-height: 100vh;
    margin: 0;
  }

  .boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;            
    width: 100%;
  }

  .box1 {
    position: static;       
    width: 80%;             
  }
}