
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #fce4ec;
    color: #333;
    padding: 50px;
}

@media screen and (max-width: 700px) {
    body {
        padding: 25px;
    }
}

.bold {
    font-weight: bold;
}

ul {
    list-style-type: none;
    padding: 0;
}

    ul li {
        margin-bottom: 15px;
    }

ul.list {
    list-style-type: circle;
    display: inline-block
}

    ul.list li {
        padding: 0 10px;
    }

.container {
    max-width: 1000px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .container-content {
        padding: 20px;
    }

img {
    display: block;
}

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

h1, h2, h3 {
    color: #e91e63;
}

.btn,
.btn2 {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background: #c2185b;
}

.btn {
    background: #e91e63;
    color: white;
}

.btn2 {
    color: #e91e63;
    background: white;
    box-shadow:inset 0px 0px 0px 2px #e91e63;
}

.btn2:hover {
    color: white;
    background: #e91e63;
}

form {
    display: inline-grid;
}

    form input,
    form textarea {
        min-width: 200px;
        margin: 5px;
    }

    form input {
        height: 30px;
    }

    form textarea {
        min-height: 100px;
    }
