* {
 font-family: 'Montserrat', sans-serif;
}

.fc-100 {   
    color: #511570;
}

.fc-200 {
    color: #8E1881;
    font-weight: 600;
}

.body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
}

#member-area {
    border: 2px solid #511570;
    border-radius: 10px;
}
#get-started {
    background-color: #8E1881;
    border-radius: 10px;    
    color: #fff;
}

.gaming-container {
    position: relative;
    z-index: 0;
    padding-top: 70px;
}

.gaming-container::before {
    content: "";
    background-image: url('https://www.intelligentgames.ph/images/gaming.png');
    background-size: cover;
    filter: blur(25px);
    width: 130%;
    height: 130%;
    position: absolute;
    top: 12%;
    left: -15%;
    opacity: 0.4;
    z-index: -1;
}

#img-gaming {
    width: 100%;
    position: relative;
    z-index: 1;
  }

footer{
    background-color: #270B35;
    padding: 60px 0;
}
footer a:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 767px) {
    #img-gaming {
        width: 100%; /* Adjust this value to set the desired width for smaller devices */
        height: auto;
        padding: 30px;
    }

    .nav-container {
        margin-bottom: 0 !important;
    }

    .gaming-container::before {
        width: 100%;
        height: 100%;
      }

    .order-2 {
        padding-bottom: 30px !important;
    }
    .flex-grow-1 {
        padding-bottom: 15px;
    }

    .footer-container {
       flex-direction: column;
    }
    .footer-container .footer-end {
       padding: 5px 0 !important;
    }
}

