*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: Peyda, serif;
}
body {
    width: 100%;
    height: fit-content;
}
div {
    width: 40%;
    max-width: 500px;
    height: fit-content;
    margin: 50px auto;
    border-radius: 30px;
    overflow: hidden;
}
img {
    width: 100%;
    float: right;
}
@media only screen and (max-width: 768px) {
    div {
        width: 100%;
        margin: 0 auto;
        border-radius: 0;
    }
}