* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

/* banner */
.banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 34px;

    height: 89px;
    padding: 0 clamp(21px, 13%, 377px);

    background-color: #4A8DF2;
}

.banner__logo {
    width: 89px;
    height: 89px;
}

.banner__name {
    color: white;
    font-size: 34px;
}

.banner__join-discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 21px;
    margin-left: auto;

    width: 144px;
    height: 55px;
    color: white;
    border: 2px solid white;
    border-radius: 13px;
    text-decoration: none;
    font-size: 21px;
    font-weight: bold;
}

.banner__join-discord-button:hover {
    text-decoration: underline;
}

/* ---------
    INDEX
--------- */

/* nations */
.nations {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 55px;

    padding: 89px clamp(21px, 13%, 377px);
}

.nations__screenshot {
    width: 377px;
    height: 282px;
}

.nations__text-section {
    display: flex;
    flex-direction: column;

    width: clamp(233px, 50%, 610px);
    min-width: 233px;
}

.nations__header {
    font-size: 34px;
    margin-bottom: 21px;
}

.nations__paragraph {
    font-size: 21px;
}

/* seasons */
.seasons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 55px;

    padding: 89px clamp(21px, 13%, 377px);

    background-color: #4A8DF2;
}

.seasons__screenshot {
    width: 377px;
    height: 282px;
}

.seasons__text-section {
    display: flex;
    flex-direction: column;

    width: clamp(233px, 50%, 610px);
    min-width: 233px;
}

.seasons__header {
    font-size: 34px;
    margin-bottom: 21px;

    color: white;
}

.seasons__paragraph {
    font-size: 21px;

    color: white;
}

/* footer */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    height: 144px;
    padding: 0 clamp(21px, 13%, 377px);

    background-color: #0F2A47;
}

.footer__header {
    color: white;
}

.footer__link {
    color: white;
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}