body {
    background-color: rgb(47,50,63);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

main, header, footer {
    background-color: rgb(47,50,63);
    color: rgb(196,159,59);
}

.cardsHouse{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 10px;
}

#cardHouse{
    background: linear-gradient(145deg, rgb(110,110,134), rgb(90,90,114));
    font-family: Georgia, 'Times New Roman', Times, serif;
    height: auto;
    color: rgb(196,159,59);
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 
        8px 8px 16px rgba(0,0,0,0.4),
        -4px -4px 12px rgba(255,255,255,0.05),
        inset 2px 2px 4px rgba(255,255,255,0.05),
        inset -2px -2px 4px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#cardHouse:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 20px rgba(0,0,0,0.5),
        -6px -6px 16px rgba(255,255,255,0.07),
        inset 2px 2px 4px rgba(255,255,255,0.05),
        inset -2px -2px 4px rgba(0,0,0,0.3);
}

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer{
    display: flex;
    justify-content: right;
    margin-top: 10px;
}

.cardDescription{
    text-align: justify;
    font-size: 12px;
}
