body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f0ec;
    color: #3e3631;
    text-align: center;
    padding: 20px;
}

header h1 {
    color: #8a7e72;
}

main {
    background-color: #ddd5c7;
    border: 1px solid #c4b9a7;
    padding: 20px;
    display: inline-block;
    margin-top: 20px;
}

#countdown {
    font-size: 2rem;
    font-weight: bold;
}
.house {
            width: 200px;
            height: 200px;
            background-color: #8A7B68;
            position: relative;
            margin: 100px auto;
            box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
        }
.house::before {
            content: '';
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 70px solid #D9CAB3;
            position: absolute;
            top: -70px;
            left: 0;
        }
.door {
            width: 40px;
            height: 80px;
            background-color: #5A3E36;
            position: absolute;
            bottom: 20px;
            left: 80px;
            border-radius: 5px;
            box-shadow: inset -2px -2px 5px rgba(0,0,0,0.5);
        }
.window {
            width: 40px;
            height: 40px;
            background-color: #A8DADC;
            position: absolute;
            top: 30px;
            left: 30px;
            border-radius: 2px;
            box-shadow: inset -1px -1px 2px rgba(0,0,0,0.5);
        }
.window:nth-child(3) {
            left: auto;
            right: 30px;
        }