@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

body {
    background-color: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    margin: 0;
    font-size: 15px;
}


#cards {
    background-color: white;
    position: relative;
    margin: auto;
    max-width: 400px;
    max-height: 600px;
    min-height: 600px;
    border-radius: 25px 25px;
}

.imgClass {
    border-radius: 25px 25px;
    margin-top: 5%;
}

.text {
    text-align: center;
}

.textbold {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    width: 100%;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
}

.textnormal {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 12px;
    width: 80%;
    margin: auto;
}

.topText {
    color: hsl(218, 44%, 22%);
}

.bottomText {
    color: hsl(220, 15%, 55%);
}