body {
    background-color: #BEADFA;
    font-family: 'Archivo', sans-serif;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    margin: 0; 
    padding: 0;
    font-size: 20px;
    color: #FFDBC3;
    letter-spacing: 2px;

}
.header button {
    margin: 5px;
}
#hearthContainer {
    position: fixed;
    bottom: 1000px; 
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 3s; 
    z-index: -1; 
}
#hearthContainer img {
    width: 500px;
    height: 500px;
}
button {
    background-color: #3D246C;
    color: white;
    border: none;
    border-radius: 18px;
    width: 100px;
    height: 40px;
    font-size: 20px;
}
#noButton {
    position: absolute;
    transition: all 0.5s ease;
    margin-left: -52px;
    margin-top: -20px;
}
#yesButton {
    margin-right: 10px;
}
#noButton:hover {
    cursor: pointer;
}
#yesButton:hover {
    cursor: pointer;
}