html body {
    background-size: cover;
    background-image: url("../assets/background.jpeg");
    height: 100%;
}

h1 {
    color: white;
    font-size: 60px;
    text-shadow: 5px 0 3px black;
}

h2 {
    color: rgb(215, 95, 10);
    font-size: 40px;
    padding: 30px;
    background-color: hsla(27, 96%, 19%, 0.779);
    border-radius: 20px;
    text-shadow: 5px 0 3px black;
}

main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: rgb(109, 51, 3) solid 10px;
    box-shadow: 20px 20px 30px 10px rgb(50, 22, 0);
    border-radius: 30px;
    background-color: hsla(0, 0%, 0%, 0.634);
    text-align: center;
    padding: 10px;
}