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

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

h2 {
    color: #65D7F2;
    font-size: 25px;
    padding: 30px;
    background-color: #0762BB;
    border-radius: 20px;
    text-shadow: 5px 0 3px black;
}

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

.card {
    border: #04223E solid 10px;
    box-shadow: 20px 20px 30px 10px rgb(32, 40, 67);
    border-radius: 30px;
    background-color: hsla(0, 0%, 0%, 0.634);
    text-align: center;
    padding: 10px;
    max-width: 500px;
}

p {
    color: white;
}