@charset "utf-8";
/* CSS Document */
/* styles.css */

/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #ffffff;
    color: #dd1066;
    text-align: center;
    padding: 20px;
}

header img {
    width: auto;
    height: auto;
    max-height: auto;
    object-fit: cover;
    
}

header h1 {
    margin: 10px 0 0 0;
    font-size: 2.0em;
}

header p {
    margin: 5px 0 0 0;
    font-size: 1.2em;
}

main {
    flex: 1;
    padding: 20px;
}

section {
    padding: 20px;
    margin: 20px 10%;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #dd1066;
    font-size: 1.8em;
    margin-top: 0;
}

section p, section ul {
    font-size: 1em;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input, form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}

form button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #dd1066;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

form button:hover {
    background-color: #b60c31;
}

footer {
    background-color: #dd1066;
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: static;
    width: 100%;
    bottom: 0;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    section {
        margin: 20px 5%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    header p {
        font-size: 0.9em;
    }

    section {
        margin: 20px 2%;
        padding: 15px;
    }
}
 button {
    margin-top: 10px;
	margin-right: 10px;
    padding: 10px 20px ;
    background-color: #dd1066;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

button:hover {
    background-color: #b60c31;
}
