/* Basic CSS styling */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e7d2a6;
}

header {
    color: white;
    padding: 0;
    text-align: center;
}

main {
    padding: 2em;
    text-align:center;
}
p {
    font-weight: 700;
    margin-top:0;
    font-size:1.3em;
}
.responsive {
  max-width: 50%;
  height: auto;
}
footer {
    color: white;
    text-align: center;
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
