body{
    background-color: #6ec28559;
}

article>h4{
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.card{
    display: grid;
    place-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.myform{
    padding: 10px 20px;
}

form{
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

label{
    width: 100%;
    display: block;
    margin-top: 10px;
}

input, textarea, select{
    width: 100%;
}

input[type="submit"]{
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

input[type="radio"]{
    width:5%;
}

.card>img{
    width: 25%;
    margin-bottom: 10px;
}

article>p{
    text-align: justify;
}

.button {
    display: inline-block;
    width: 75%;
    margin-bottom: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #ff5f6d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #ff3d4a;
  }


  /* properties change when using mobile screen */

@media only screen and (max-width: 900px) {
    .card>img{
        width: 50%;
    }
}

@media only screen and (max-width: 600px) {
    .card>img{
        width: 100%;
    }
}