* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background: #fff;
    color: #000;
    text-align: center;
    padding-bottom: 50px;
}

header {
    position: relative;
}

header img {
    width: 100%;
    height: auto;
    display: block;
}

header h1 {
    font-size: 2em;
    margin-top: 20px;
}

header h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border: 1px solid black;
    text-decoration: none;
    color: black;
}

section h2 {
    margin: 40px 0 20px;
    font-size: 2em;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.grid div {
    width: 200px;
}

.grid img {
    width: 100%;
    height: auto;
    display: block;
}

.grid p {
    margin-top: 10px;
    font-weight: bold;
}

.quote {
    font-style: italic;
    margin-top: 20px;
}

footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

footer img {
    width: 200px;
    height: auto;
    border-radius: 4px;
}
