* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    background-color: #D6E2F0;
}


body * {
    font-family: 'Outfit', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;

    flex-direction: column;
}

main {
    display: flex;
    justify-content: center;
}

.card {
    display: flex;
    justify-content: center;
    flex-direction: column;

    align-items: center;

    background-color: #FFFFFF;
    border-radius: 15px;

    width: 375px;
    padding: 4%;

    top: 25%
}

img {
    width: 375px;
    height: 375px;
}

h1 {
    color: #1F3251;
    font-size: 22px;
    font-weight: 700;

    margin: 0;
    text-align: center;

    padding-top: 15px;
    background-color: #FFFFFF;
}

p {
    color: #7B879D;
    font-size: 15px;
    font-weight: 400;
    text-align: center;

    padding: 15px;
    background-color: #FFFFFF;
}

footer {
    color: #1F3251;
    font-size: 11px;
    text-align: center;
    padding-top: 15px;
}

a {
    text-decoration: none;
    color: #1F3251;
}

/* Media queries */

@media screen and (min-width: 320px) and (min-height: 800px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    main {
        display: flex;
    }

    .card {
        width: 315px;
        height: 484px;
    }

    .card img {
        width: 280px;
        height: 280px;
    }
}