body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px 0;
}
h1 {
    text-align: center;
    margin-top: 2%;
    color: #B28282;
    font-family: "Itim", cursive;
    font-weight: 550;
    font-style: normal;
    font-size: 46px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.box {
    width: 300px;
    margin: 10px;
    padding: 40px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 8%;
    margin-bottom: 5%;
    background-color: #F6D8D8;
}

.box img {
    width: 100%;
    height: auto;
    max-width: 100%; 
    max-height: 230px; 
}


.box h2 {
    margin-bottom: 10px;
    font-family: "Itim", cursive;
    font-weight: 600;
    font-style: normal;
    color: #B28282;
}

.box p {
    margin-bottom: 20px;
    font-family: "Itim", cursive;
    font-weight: 550;
    font-style: normal;
}

button {
    padding: 13px 30px;
    background-color: #FFDAB9;
    color: #FAC5C5;
    border: 2px solid #B28282;
    border-radius: 11px;
    cursor: pointer;
    font-size: 25px;
    font-family: "Itim", cursive;
    font-weight: 550;
    font-style: normal;
    text-shadow: -1px -1px 0 #B28282,  
                  1px -1px 0 #B28282,
                 -1px  1px 0 #B28282,
                  1px  1px 0 #B28282;

}

