main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.card {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    margin-top: 20px;
    border-radius: 10px;
    border: 1px solid black;
    width: 100%;
    text-align: center;
    background-color: azure;
}

a {
 text-decoration: none;
}

@media (min-width:640px) {
    .card {
        width: 80%;
    }
}

@media (min-width:1280px) {
    .card {
        width: 60%;
    }
}



body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }
  