body {
    color: #5d5c5c;
    background-color: #f6f6f6;
    font-family: "Lato", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

main {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-bottom: 8px;
}

p {
    font-size: 16px;
    line-height: 24px;
    color: #aaa;
    margin: 0;
    text-align: center;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px;
    width: 240px;
    height: 130px;
    box-sizing: border-box;
}

.logos a:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0 2px 5px -1px, rgba(0, 0, 0, 0.3) 0 1px 3px -1px;
}

.logos a img {
    width: 100%;
}

@media (max-width: 820px) {
    .logos {
        flex-direction: column;
    }
}
