html, body {
    background: #3399ff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    color: #323232;
}

a:link, a:visited {
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;
    justify-content: flex-start;
}

.card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 10px;
    margin: 0.5rem 0;
}

.deck {
    display: flex;
    flex-wrap: wrap;
}

.main-card, .deck {
  width: min(90%, 72rem);
  margin-inline: auto;
  gap: 1rem;
}

.deck > div {
    flex: 1;
}

.content {
    padding: 35px;
    text-align: center;
}

.deck > div > .content {
    padding-top: 15px;
}

.deck > div > .content > p {
    text-align: left;
    line-height: 22px;
}

.content ul {
    text-align: left;
    margin-top: 0px;
}

.content li {
    margin: 10px 0;
}

.header {
    width: 100%;
}

.header-text {
    margin: 35px 0;
}

.logo {
    max-height: 80px;
    height: auto;
    max-width: 100%;
}

.button {
    min-height: 24px;
    border-radius: 5px;
    padding: 13px 15px;
    letter-spacing: 0.06em;
    font-size: 0.875rem;
    color: #FFFFFF;
    background: #3fa9f5;
    text-wrap: nowrap;
}

.blue-text {
    color: #3399ff;
}

@media (max-width: 600px) {
    .wrapper {
        padding-top: 1rem;
    }
    
    .deck {
        flex-direction: column;
        gap: 0;
    }

    .content ul {
        padding-inline-start: 15px;
    }
}

@media (min-height: 700px) {
    .wrapper {
        justify-content: center;
    }
}