@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: rgb(90, 152, 245);
    font: normal 15pt Arial;
}

header {
    align-items: center;
    color: white;
    text-align: center;
    margin: auto;
}

main {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: auto;
    min-width: 500px;
    max-width: 70%;
    box-shadow: 5px 5px 10px black;
}

footer {
    color: white;
    text-align: center;
    font-style: italic;
    margin: auto;
}

p {
    text-align: center;
}

img {
    display: flex;
    margin: 10px auto;
    max-width: 500px;
    max-height: 500px;
    border-radius: 5px;
}

.flex-row {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: space-evenly;
}


.flex-column {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-evenly;
}