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(227, 141, 11);
    font-size: 40px;
    padding: 30px;
    background-color: hsla(139, 94%, 26%, 0.651);
    border-radius: 20px;
    text-shadow: 5px 0 3px black;
}

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

.card {
    border: darkgreen solid 10px;
    box-shadow: 20px 20px 30px 10px rgb(53, 87, 2);
    border-radius: 30px;
    background-color: hsla(0, 0%, 0%, 0.634);
    text-align: center;
    padding: 10px;
}