

#outercontainer {
    width: 100%;
}

#navbox {
    background-color: #ffffff;
    height: 50px;
}

#titlebox {
    background-image: url("seasoncover.png");
    background-size: 100%;
    height: 800px;
    background-repeat: no-repeat;
    border-radius: 15px;
}

nav {
    height: 50px;
    float: right;
    width: 800px;
    margin-top: 2%;
    margin-right: 3%;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    color: #ffffff;
    opacity: 0.7;
    text-decoration: none;
    font-size: 18pt;
    font-family: 'GlacialIndifferenceBold';
    padding: 10px;
    transition: 0.5s;
  }
  
  nav a:hover {
    opacity: 1;
  }
  
  .content {
    padding: 20px;
  }


.subheadings {
    color: #435dec;
    font-size: 30pt;
    width: 950px;
    height: 40px;
    font-family: 'GlacialIndifferenceBold';
}

p {
    font-size: 18px;
    margin: 2%;
    font-family: 'Source Serif Pro', serif;
}

.gpage {
    padding: 2.5%;

}


    .ginfo {
        margin: auto;
        margin-top: 2%;
        width: 1000px;
        height: 680px;
        margin-bottom: 4%;
    }

        .gameoverviewbox {
            margin-bottom: 3%;
            padding: 3%;
            border-radius: 15px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
        }

        .gamefactsbox {
            margin-bottom: 6%;
            padding: 3%;
            border-radius: 15px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
        }
            .ginfotable {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                
            }
                .ginfobox {
                    color: #ffffff;
                    border-radius: 15px;
                    height: 60px;
                    width: 250px;
                    text-align: center;
                    font-family: 'GlacialIndifferenceBold';
                    text-align: center;
                    perspective: 1000px;
                }

                    .ginfoboxinner {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        text-align: center;
                        transition: transform 0.8s;
                        transform-style: preserve-3d;
                    }

                    .ginfobox:hover .ginfoboxinner {
                        transform: rotateY(180deg);
                    }

                    .ginfoboxfront, .ginfoboxback {
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        -webkit-backface-visibility: hidden;
                        backface-visibility: hidden;
                    }

                    .ginfoboxfront {
                        background-color: #435dec;
                        border-radius: 15px;
                        color: white;
                    }

                    .ginfoboxback {
                        background-color: #ffffff;
                        border: solid;
                        border-color: #435dec;
                        border-radius: 15px;
                        color: #435dec;
                        transform: rotateY(180deg);
                    }

                .verticalparagraph{
                    position: relative;
                    top: 50%;
                    transform: translateY(-60%);
                    font-family: 'GlacialIndifferenceRegular';
                }

        .gpagebottom{
            padding: 3%;
            border-radius: 15px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
            width: 920px;
            margin: auto;
        }

            .gphotosrow {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                margin: auto;
                gap: 20px;
            }

                .gphotos {
                    width: 250px;
                    height: 140px;
                    border-radius: 15px;
                    cursor: pointer;
                    transition: 0.3s;
                }

                .gphotos:hover {
                    width: 250px;
                    height: 140px;
                    border-radius: 15px;
                    cursor: pointer;
                    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
                }

                #lightbox {
                    position: fixed;
                    z-index: 1000;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0, 0, 0, 0.8);
                    display: none;
                }

                #lightbox.active {
                    display: flex;
                    justify-content: center;
                    align-items: center;

                }

                #lightbox img {
                    height: 500px;
                    width: 900px;
                }

@media screen and (min-width: 800px) and (max-width: 1000px) {

    #titlebox {
        background-image: url("seasoncover.png");
        background-size: 100%;
        height: 460px;
        background-repeat: no-repeat;
        border-radius: 15px;
    }

    nav {
        height: 50px;
        float: right;
        width: 600px;
        margin-top: 2%;
        margin-right: 3%;
    }

    nav a {
        color: #ffffff;
        opacity: 0.7;
        text-decoration: none;
        font-size: 16pt;
        font-family: 'GlacialIndifferenceBold';
        padding: 10px;
        transition: 0.5s;
    }

    .subheadings {
        color: #435dec;
        font-size: 21pt;
        width: 300px;
        height: 40px;
        font-family: 'GlacialIndifferenceBold';
    }

    .ginfo {
        margin: auto;
        margin-top: 2%;
        width: 750px;
        height: 560px;
        margin-bottom: 6%;
    }

    .gameoverviewbox {
        margin-bottom: 3%;
        margin-top: -3%;
        padding: 3%;
        border-radius: 15px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
    }

    p {
        font-size: 14px;
        margin: 2%;
        font-family: 'Source Serif Pro', serif;
    }

    .ginfobox {
        color: #ffffff;
        border-radius: 15px;
        height: 60px;
        width: 200px;
        text-align: center;
        font-family: 'GlacialIndifferenceBold';
        text-align: center;
        perspective: 1000px;
    }

    .gpagebottom{
        padding: 3%;
        border-radius: 15px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
        width: 700px;
        margin: auto;
    }

    .gphotos {
        width: 200px;
        height: 120px;
        border-radius: 15px;
        cursor: pointer;
        transition: 0.3s;
    }

    .gphotos:hover {
        width: 200px;
        height: 120px;
        border-radius: 15px;
        cursor: pointer;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
    }

    #lightbox img {
        height: 350px;
        width: 600px;
    }
}


@media screen and (max-width: 560px) {
    
    #titlebox {
        background-image: url("seasoncover.png");
        background-size: 100%;
        height: 320px;
        background-repeat: no-repeat;
        border-radius: 15px;
    }

    nav {
        height: 50px;
        float: right;
        width: 500px;
        margin-top: 2%;
        margin-right: 3%;
    }

    nav a {
        color: #ffffff;
        opacity: 0.7;
        text-decoration: none;
        font-size: 11pt;
        font-family: 'GlacialIndifferenceBold';
        padding: 10px;
        transition: 0.5s;
        }

    .subheadings {
        color: #435dec;
        font-size: 21pt;
        width: 300px;
        height: 40px;
        font-family: 'GlacialIndifferenceBold';
    }

    .ginfo {
        margin: auto;
        margin-top: 2%;
        width: 500px;
        height: 675px;
        margin-bottom: 6%;
    }

    .gameoverviewbox {
        margin-bottom: 3%;
        margin-top: -3%;
        padding: 3%;
        border-radius: 15px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
    }

    p {
        font-size: 14px;
        margin: 2%;
        font-family: 'Source Serif Pro', serif;
    }

    .ginfobox {
        color: #ffffff;
        border-radius: 15px;
        height: 60px;
        width: 200px;
        text-align: center;
        font-family: 'GlacialIndifferenceBold';
        text-align: center;
        perspective: 1000px;
    }

    .gpagebottom{
        padding: 3%;
        border-radius: 15px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
        width: 480px;
        margin: auto;
    }

    .gphotos {
        width: 200px;
        height: 120px;
        border-radius: 15px;
        cursor: pointer;
        transition: 0.3s;
    }

    .gphotos:hover {
        width: 200px;
        height: 120px;
        border-radius: 15px;
        cursor: pointer;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 0 rgba(0, 0, 0, 0.3);
    }

    #lightbox img {
        height: 300px;
        width: 500px;
    }
}






