body {
    font-family: sans-serif;
    padding: 20px;
    background: #000000;
}

header {
    text-align: center;
    padding: 20px;
    background: #200000;
    color: white;
    margin-bottom: 30px;
}

.house-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 50px; 
    max-width: 1200px;
    margin: auto;
}

.house-card {
    background: rgb(50, 3, 3);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.house-card:hover {
    transform: translateY(-5px);
}

.house-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.house-info {
    padding: 20px;
}

.adventure-container {
    max-width: 800px;
    margin: auto;
    padding: 70px;
    background: #0e0d0d;
    text-align: center;
}

.choice-btn {
    display: block;
    padding: 15px;
    margin-top: 50px;
    color: rgb(148, 141, 5);
    border-radius: 5px;
}

.choice-btn:hover {
    background: #0e0c4e;
}

.spooky-text {
    color: #b71c1c;
    font-family: 'Courier New';
}

.normal-text {
    color: #ffffff;
    font-family: 'Courier New';
}