body {
    /* font-family: Arial, sans-serif; */
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background: url('tile3.jpg') repeat;
    color: #ddd;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    background: #000;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
nav {
    display: flex;
    justify-content: center;
    background: #111;
    padding: 10px 0;
}
nav a {
    margin: 0 15px;
    font-size: 18px;
    padding: 10px 0;
    display: inline-block;
}
.container {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
    flex: 1;
}
.image-container {
    width: 100%;
    background: #333;
    position: relative;
}

.home .image-container img {
    width: 100%;
    height: auto;
    position: static;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}
footer {
    text-align: center;
    padding: 15px;
    background: #111;
    color: white;
    margin-top: auto;
}
a {
    color: #89CFF0; /* Bright baby blue */
    text-decoration: none;
}
a:hover {
    color: #A5D8FF;
    text-decoration: underline;
}
