*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    font-size: 1rem;
    font-family: sans-serif;
    color: #202020;
    background-color: white;
    letter-spacing: 1px;
}

h1,
h2,
h3 {
    font-family: serif;
    color: #00112c;
    text-align: center;
}

a {
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.container {
    width: 100%;
    height: 100%;
    padding-inline: min(5vw, 5rem);
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    align-items: center;
    flex-direction: row;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    color: #00112c;
    background-color: white;
    box-shadow: 0px 0px 5px 1px #e0e0e0;
}

header h1 {
    font-size: 2.5rem;
    transition: all 0.2s ease 0s;
}

header h1:hover {
    color: #3af4ca;
}

main {
    width: 100%;
    padding-top: 5rem;
    min-height: 100vh;
}

main .wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding-block: 2rem;
    align-items: center;
    justify-content: center;
}

main .wrapper img {
    width: 240px;
    height: 240px;
    image-rendering: optimizeQuality;
    image-orientation: from-image;
    border: none;
    border-radius: 0.5rem;
}

footer {
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    height: 5rem;
    background-color: #00112c;
}

footer a {
    color: white;
    font-size: 1.25rem;
}

footer h1 {
    color: #3af4ca;
    font-size: 2.5rem;
}