* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: linear-gradient(to right, #E0E1DD, #acb6e5);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  padding: 25px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-right: 30px;
}

.card-header h2 {
  font-size: 1.5rem;
  color: #2c3e50;
}


.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

  
 .back-button {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 20px;
      height: 20px;
      color: white;
      border: none;
      padding:10px 15px;
      border-radius: 5px;
      cursor: pointer;
    }
  
  
h2{
       font-family: 'Inter', sans-serif;
    }
    ul {
      list-style: none;
    }

    ul li {
      background: #ecf0f1;
      padding: 15px;
      margin: 10px 0;
      border-radius: 8px;
      font-size: 1.1rem;
      transition: background 0.3s;
         font-family: 'Montserrat', sans-serif;
    }



ul {
  list-style: none;
}

ul li {
  background: #ecf0f1;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background 0.3s;
}

ul li:hover {
  background: #d0dce3;
}

ul a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 600px) {
  .card {
    padding: 20px;
  }

  .card-header h2 {
    font-size: 1.3rem;
  }

  .back-button {
    font-size: 1rem;
    padding: 6px 10px;
  }

  ul li {
    font-size: 1rem;
    padding: 12px;
  }
}