header {
    background-color: #333333;
    text-align: center;
    color: #a5a5a5;
    font-family: 'Mulish', sans-serif;
    font-size: 14pt;
    height: fit-content;
}
footer {
    background-color: #333333;
    font-family: 'Mulish', sans-serif;
    margin: auto;
    width: 60%;
}

.logo {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.logo-text {
    padding-top: 30px;
}

.logo-img {
    height: 80px;
    width: 80px;
}

.logo-img img {
    padding-top: 15px;
    width: 60%;
    object-fit: contain;
}

* {
    margin: 0;
}
.hero-container {
    display: none;
}

.hero-container img {
    display: none;
}

.tagline {
    background-color: #d4c0d6;
    font-family: 'Mulish', sans-serif;
    font-size: 24pt;
    text-align: center;
    height: 100px;
}

.about-us {
    background-color: #fff;
}
.about-us-content {
    margin-left: 50px;
    margin-right: 50px;
}

.about-us-header {
    font-family: 'Mulish', sans-serif;
    text-align: center;
}

.about-us-table {
    width: 100%;
}

.about-us-column {
    color: #5c5c5c;
    width: 100%;
    font-family: 'Mulish', sans-serif;;
    text-align: center;
}

.separator {
    margin-top: 50px;
    margin-bottom: 25px;
    width: 100%;
    background-color: #dedede;
    height: 1px;
}

.games-list {
    margin-left: 50px;
    margin-right: 50px;
}

.games {
    background-color: #fff;
}

.games-header {
    font-family: 'Mulish', sans-serif;
    text-align: center;   
}

.game-card {
    color: #5c5c5c;
    width: 100%;
}

.game-description {
    color: #5c5c5c;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    margin: auto;
    width: 90%;
}

.game-screenshot {
    margin-top: 25px;
    margin-bottom: 25px;
    width:100%;
    overflow: hidden;
}

.game-screenshot img {
    width:100%;
    border-radius: 10px;
    object-fit: contain;
}

.content {
    width: 100%;
}

body {
    background-color: #333333;
}

.footer-name {
    color: #fff;
    font-size: x-small;
    text-align: center;
}

.copyright {
    font-size: x-small;
    text-align: center;
    color: #a7a7a7;
}

.google-play-link {
    background-image: url("/assets/images/google_play_btn.png");
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 135px;
    margin: auto;
    height: 40px;
}

.social {
    display: flex;
    width: 90px;
    gap: 10px;
    margin: auto;
    font-size: large;
}


.social-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: white;
    text-align: center;
    border-radius: 15%;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 24px;
}

.social-icon {
    padding-top: 8px;
}

.social-button:hover {
    background-color: #555;
}


.social-button.tiktok i {
    color: white; /* White icon for contrast */
}