* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

#wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.box {
    border-radius: 6px;
    border: 1px solid #e4e4e4;
    text-align: center;
    max-width: 841px;
    width: 100%;
    padding: .5rem;
}

.box p {
    font-size: 2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    color: #005282;
    margin-bottom: 1rem;
}