:root {
    --branding-color-dark-pink: #9E1C56;
    --branding-color-dark-green: #062925;
    --secondary-color: #C54C82;
    --tertiary-color: #FFEAEE;
    --heading-font-family: "Jua", serif;
    --default-font-family: "Poppins", sans-serif;
}

body {
    background-color: #FFFFFF;
    color: #062925;
    font-family: "Poppins", sans-serif;
    margin: 0;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.main-content-wrapper {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 0;
    flex: 1;
}

.navbar {
    font-family: "Poppins", sans-serif;
    padding: 18px;
}

.navbar-toggler {
    background-color: #FFFFFF;
}

h1, h2 {
    font-family: "Jua", sans-serif;
}

h1 {
    font-size: 45px;
}

h2 {
    color: #9E1C56;
    font-size: 35px;
}

.hero-container {
    background-color: #FFEAEE;
    padding: 50px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-branding {
    color: #FFFFFF;
    border-radius: 15px;
    padding: 15px 30px;
}

.btn-branding.primary {
    background-color: #C54C82;
}

.btn-branding.secondary {
    background-color: #347474;
}

.btn-branding.primary:hover {
    background-color: var(--branding-color-dark-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-branding.secondary:hover {
    background-color: #1d5a5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-branding {
    transition: all 150ms ease-in-out;
}

.bg-body-branding {
    background-color: #F4AEBA;
}

.featured-heading {
    color: #062925;
    font-family: "Poppins",
        sans-serif;
}

.featured-games-heading {
    color:#9E1C56;
    font-family: "Poppins",
        sans-serif;
}

.games-container {
    background-color: #FFEAEE;
    padding: 50px;
}

.handheld-console {
    max-height: 500px;
    max-width: auto;
}

.game-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 1200px) {
    .apps-container {
            padding: 20px;
        }
}

.about-heading-name {
    color: #9E1C56;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-text-container {
    background-color: #FFEAEE;
    padding: 50px;
}

.btn-outline-branding {
    background-color: #FFFFFF;
    border: 1px solid #9E1C56;
    color: #9E1C56;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    font-weight: 500;
}

.btn-outline-branding:hover {
    background-color: #FFFFFF;
    border: 1px solid #062925;
    color: #062925;
    transform: translateY(-2px);
}

.alien {
    max-width: 280px;
}

.text-light-branding {
    color:#062925cb;
}

.game-projects-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.thanks-container {
    background-color: #FFEAEE;
        padding: 50px;
}

footer {
    width: 100%;
    background-color: var(--tertiary-color);
    margin-top: auto;
}

footer .email-link {
    text-decoration: none;
    color: var(--branding-color-dark-green);
    font-size: 24px;
}

footer .email-link:hover {
    color: var(--branding-color);
}

footer .social-links a {
    margin: 0 20px;
    color: white;
    background: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    transition: all 100ms ease-in-out;
}

footer .social-links a:hover {
    color: white;
    background: var(--branding-color-dark-pink);
}