* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(67, 27, 161), rgb(146, 135, 194));
    font-size: 2rem;
    font-family: sans-serif;
    color: rgb(7, 9, 10);
  }
  .container {
    height: 20rem;
    width: 15rem;
    background-color: rgb(228, 152, 156);
    color: white;
    font-family:sans-serif;
    text-align: center;
    padding-top: 12px;
    border-radius: 16px;
    border: 2px solid rgb(14, 43, 1);
  }