/*<uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900*/
img {
    width: 100%;
}
.m-plus {
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.m-plush {
    font-family: "M PLUS 1", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
body{
    background-color: #ed6ca4;
    max-width: 100%;
}
main{
    display: flex;
    justify-content: center;
}
section{
    max-width: 800px;
    padding: 10px;
    background-color: #f9d9de;
    border: 5px solid white;
    border-radius: 5px;
}
article{
    text-align: center;
}
h1,h2{
    font-size: 24px;
    color: #ed6ca4;
}
h1{
    margin-bottom: 6px;
}
h2{
    margin-top: 6px;
}
footer{
    text-align: center;
    color: white;
}
footer p{
    margin-top: 1rem;
}
a{
    text-decoration: none;
    padding: 0;
}
.btn {
    min-width: 130px;
    width: 280px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    border: none;
    background: #ff6392;
    box-shadow: 0 5px #ff0a78;
  }
  .css-button-3d--rose:hover {
    box-shadow: 0 3px #ff0a78;
    top: 1px;
  }
  .css-button-3d--rose:active {
    box-shadow: 0 0 #ff0a78;
    top: 5px;
  }
  .mb1{
    margin-bottom:1rem;
  }
  .mb3{
    margin-bottom:3rem;
  }