/* THIS CSS IS FOR PRODUCT PAGES */
h2{
    margin-top: 45px;
    padding: 15px;
}
p{
    text-align: left;
}
iframe{
    max-width: 100%;
}
.product{
    overflow: hidden;
    text-align: center;
    color: #fff;
    height: auto;
}
.product h1{
    padding: 25px;
    font-size: 45px;
}
.product a{
    color: #4DBD33;
    font-size: large;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
}
.product img{
    max-width: 100%;
}
.store-links{
    display: flex;
    justify-content: center;
}
.store-links button{
    display: flex;
    transform: none;
    position: relative;
    left: 0px;
    align-items: center;
}
.gamepage{
    width: 100%;
    display: flex;
    justify-content: center;
}
.gamepage-about{
    width: 50%;
}
.media-section{
    padding: 25px;
    width: 80vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -40vw;
  margin-right: -40vw;
}
.media-images{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.media-images img{
    padding: 5px;
}
@media (max-width: 1000px)
{
    .product{
        margin-top: 6vh;
    }
    .product h1{
        font-size: 12vw;
    }
    .product a{
        padding: 10px;
    }
    .store-links{
        display: grid;
    }
    .gamepage-about{
        width: 90%;
    }
    .media-section{
        width: 100vw;
        margin-left: -50vw;
  margin-right: -50vw;
    }
}