@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");




.mario-title {
    font-family: "VT323", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
  }


  .display-4 {
    font-family: "VT323", serif;
    font-size: 50px !important;
  }
  
  .roboto-regular {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }  

  p {
    font-family: "Roboto", serif;
  }

#development {
    margin-top: 200px !important;
}

#development h1 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.box {
    /* width: 600px; */
    background-color: #ffebee;
    border: 3px solid #d32f2f;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba (0,0,0,0.2);
    padding: 20px;
    text-align: justify;
    /* margin-left: 50px; */
    max-width: 990px;
}

@keyframes bounce {
    0%, 20% , 50% , 80% ,100% {
        transform: translateY(0);
    }
    40% {
        transform : translateY(-20px);
    }
    60%{
        transform: translateY(-10px);
    }
}

.dev-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius : 10px;
    box-shadow: 0px 5px 10px rgba (0,0,0,0.2);
    animation: bounce 2s infinite;

}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* Grows a little */
    }
    100% {
        transform: scale(1); /* Shrinks back to original */
    }
}

.release-image {
    max-width: 90%; 
    border-radius: 10px; 
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); 
    animation: pulse 2s infinite;
    margin-bottom: 30px;
}

.release-box {
    max-width: 990px;
    background-color: #e3f2fd;
    border: 3px solid #0073e6;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: justify;
    margin: 0 0 0 auto ;
}


.sales-box{
    max-width: 990px;
    background-color: #fffbe6;
    border: 3px solid #ffcc00;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    padding: 20px;
    text-align: justify;
    margin: 0 0 0 auto ;

}
@keyframes flip {
    0% {
        transform: rotateY(0deg); /* Start at original position */
    }
    50% {
        transform: rotateY(180deg); /* Flip 180 degrees */
    }
    100% {
        transform: rotateY(360deg); /* Flip back to original */
    }
}


.sales-image {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    animation: flip 10s infinite; /* Continuous flip every 3 seconds */
}

.sales-image:hover {
    transform:rotateY(180deg);
}

.re-release-box {
    max-width: 900px;
    background-color: #e8f5e9; 
    border: 3px solid #388e3c; 
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: justify;
    margin: 0 auto ;

}

.row.mt-5 {
    display: flex;
    justify-content: center;
    align-items: center;
}


.ifooter {
    background-color: #ad1608;
  }
  
footer .active-link{
    font-weight: bold;
    color: yellow !important;
  }


.ref:hover{
  
    background-color: rgb(0, 106, 255);
    border-radius: 3px;
    padding: 4px 5px;    
    border: 1px solid white;
 }
