

body { margin:0; padding:0;
  background-color: rgb(162, 148, 249);
  .top { text-align: center; padding: 0.5em; background:rgb(51, 4, 54); font-size: 2.5em; font-family: 'Arial', sans-serif; color: white; font-weight: bold; letter-spacing: 1px;}
  .big { display:flex; justify-content:space-around; margin-top:2em; };
  .left, .right { display:flex; justify-content:center; flex:1; flex-direction: column}; 
  .center { display:flex; align-items:center; justify-content:center; flex:1; }
  .lower, .upper { width: 100%; flex: 1; display: flex; justify-content: center; align-items: center; box-sizing: border-box;}
  .lower { width: 100%; display: flex; justify-content: center; }
  .upper { width: 100%; display: flex; justify-content: center; }
  button {
      padding: 40px 100px;
      background: linear-gradient(to bottom, #ff0cf3, #ff0d86);
      color: white;
      border: none;
      border-radius: 28px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      letter-spacing: 1px;
  }
  button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
      background: linear-gradient(to bottom, #8e2de2, #8b06c9);
  }
  button:active {
      transform: translateY(1px);
  }
}

h1 {
    text-align: center;
  }
p {
    text-align: center;
  }
h1::after {
    content: "";
    display: block;
    width: 70%;
    height: 10px;
    background-color: rgb(83, 213, 223);
    margin: auto;
    margin-top: 5px;
  }
table {
    border-collapse: collapse;
    width: 100%;
}

td {
    padding: 50px;
    text-align: center;
}

img {
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
}


th {
    width: 25%;
}