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: #49DAEF;
    font-size: 40px;
    padding: 30px;
    background-color: #004370;
    border-radius: 20px;
    text-shadow: 5px 0 3px black;
}

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

.card {
    border: #A71B0A solid 10px;
    box-shadow: 20px 20px 30px 10px #18D0EA;
    border-radius: 30px;
    background-color: hsla(0, 0%, 0%, 0.634);
    text-align: center;
    padding: 10px;
}