/* Froge's Accommodation Style Sheet */
body {
    font-family: "Comic Sans MS", cursive, sans-serif;
    background-color: #e0f7fa;
    color: #00695c;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004d40;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    margin: 10px;
    padding: 10px;
    background-color: #00796b;
    display: flex;
    justify-content: space-around;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
    color: #b2dfdb;
}

main {
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

button {
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #004d40;
}

.room-card {
    border: 1px solid #00796b;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #b2dfdb;
}

.room-card img {
    width: 100%;
    height: auto;
}

.room-card h1 {
    font-size: 24px;
    margin: 16px;
}

.room-card p {
    margin: 16px;
    color: #004d40;
}

.room-card button {
    align-self: center;
    margin: 16px;
}