main {
    padding-bottom: 0;
}

h1 {
    width: 100%;
    font-family: var(--primary-font);
    font-weight: 200;
    letter-spacing: 5px;
    text-align: center;
    justify-content: center;
    margin: 60px 0 30px 0;
}

#games-container {
    margin-bottom: 80px;
}

#games {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#games a {
    width: 30%;
    height: fit-content;
}

.box {
    width: 100%;
}

.box img {
    width: 100%;
}

.box h2 {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
}

.box span {
    margin-top: 15px;
    padding-right: 20px;
    text-align: left;
    color: var(--text-secondary-color);
    font-size: 18px;
    font-weight: 150;
}

#meet-us {
    display: flex;
    width: 100%;
}

#meet-us-body {
    position: absolute;
    letter-spacing: 1px;
    margin-top: 70px;
}

#meet-us-body h2 {
    margin-bottom: 20px;
    font-weight: bold;
}

#meet-us-body>span {
    font-size: 24px;
    font-weight: 100;
}

#meet-us-body .button {
    margin-top: 25px;
}

#meet-us-body .button span {
    margin: 10px;
    font-size: 22px;
}

#meet-us-background {
    position: relative;
    width: 100%;
    height: fit-content;
    opacity: 0.4;
}

#meet-us-background img {
    max-width: 100%;
    min-height: 400px;
    object-fit: cover;
}

@media (max-width: 900px) {
    main {
        background-color: var(--secondary-color);
    }

    #games {
        flex-direction: column;
    }

    #games a {
        width: 100%;
        margin-bottom: 4em;
    }

    #games>a:last-child {
        margin-bottom: 0;
    }

}