body {
    background-color: white;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: black;
    text-align: center;
}

.main {
    max-width: 600px;
}

.p {
    text-align: left !important;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.button {
    transition-duration: 0.4s;
    margin: 2px 2px 2px 2px;
    padding: 10px 24px;
    width: 200px;
    background-color: white;
    border: 2px solid rgb(174, 235, 255);
    font-size: 16px;
}

.button:hover {
    margin: 2px 2px 2px 2px;
    background-color: rgb(174, 235, 255); /* Green */
    color: black;
    border: 2px dotted rgb(0, 191, 255);
    cursor: pointer;
}

.item {
  flex: 1;
}
@media screen and (width >= 600px) {
  .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  }
}