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(70, 167, 237);
    font-size: 40px;
    padding: 30px;
    background-color: hsla(218, 89%, 31%, 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(0, 45, 193) solid 10px;
    box-shadow: 20px 20px 30px 10px rgb(0, 35, 61);
    border-radius: 30px;
    background-color: hsla(0, 0%, 0%, 0.634);
    text-align: center;
    padding: 10px;
}