#header {
    text-align: center;
    
  background-repeat: no-repeat;

  background-size: contain;
  margin-bottom: 40pt;
  margin-top: 90pt;
}

#navigation {
    width: 100%;
    height: 30pt;
    background-color: rgb(229, 72, 32);
    box-shadow: 0 0 15pt black;
    margin-top: 0pt;
    margin-bottom: 20pt;
    padding-top: 15pt;
    text-align: right;
    color: white;
    position: fixed;
    top: 00%;
    z-index: 10;
}

.navigationLink {
    margin: 10pt;
    margin-right: 30pt;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

#headerIMG {
    position: relative;
    top: 0pt;
    width: 100%;
    background-attachment: fixed;
}

#imageContainer {
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    flex-direction: row;

    flex-wrap: wrap;
    margin: auto;
    margin-top: 20pt;
    width: 90%;

    max-width: 800pt;

    
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));
    margin-top: 50pt;
    width: 25%;
}

#personContainer{
    
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: space-around;
    flex-direction: row;

    flex-wrap: wrap;
    margin: auto;
    margin-top: 20pt;
    width: 90%;

    max-width: 800pt;
    text-align: center;

    
}

.personText {
    
    position: relative;
    padding-bottom: -75pt;
    top: -75pt;
}

.person {
    margin:10pt;

}

.personName {
    color: white;
    font-size: 18pt;
}
.personProfession {
    color: rgb(0, 0, 0);
}
.personBG {
    background-color: rgb(172, 172, 172);
    box-shadow: 0 0 15pt black;
    border-radius: 5pt;
    text-align: center;
    width: 180pt;
    margin-top: 75pt;
    height: 190pt;

}

.personIMG {
    border-radius: 50%;
    position: relative;
    padding-bottom: -75pt;
    top: -75pt;
    width: 150pt;
    height: 150pt;
    margin: auto;
    float: none;
    box-shadow: 0 0 15pt black;
    border-color: white;
    border-style: solid;
    border-width: 2pt;
    object-fit: cover;
}

#previewVideoContainer {
    margin: auto;
    width: 90%;
    margin-top: 20pt;
    max-width: 800pt;
}
.descriptionContainer {
    width: fit-content;
    margin-top: 20pt;
    max-width: 800pt;
    margin: auto;
}

#previewVideo {
    width: 100%;
}

#footer {
    width: 100%;
    min-height: 10pt;
    color: rgb(0, 0, 0);
    margin-top: 10pt;
    margin-bottom: 10pt;
    padding-top: 2pt;
    padding-bottom: 2pt;
}

#footer2 {
    width: 100%;
    min-height: 10pt;
    color: rgb(0, 0, 0);
    margin-top: 30pt;
    margin-bottom: 30pt;
    padding-top: 2pt;
    padding-bottom: 20pt;

    background-color: rgb(172, 172, 172);
    color: white;
}

.gameIcon {
    width: 100pt;
    border-radius: 10pt;
    margin-top: 20pt;
    margin-left: 30pt;
    transform: scale(1);
    transition: all 0.2s;
    cursor: pointer;
}

.gameIcon:hover {
    transform: scale(1.05);
    transition: all 0.2s;
}

.contentIMG {
    width: 28vw;
    margin-top: 20pt;
    border-radius: 10pt;
    cursor: pointer;
    transform: scale(1.0);
    transition: all 0.2s;
    box-shadow: 0 0 0pt black;
    object-fit: cover;
    height: 15vw;
    max-width: 233pt;
    max-height: 140pt;
}

.contentIMG:hover {
    transform: scale(1.02);
    transition: all 0.2s;
    box-shadow: 0 0 15pt black;
}

.description {
    width: 700pt;
    max-width: 95%;
    margin: auto;
}

html {
    
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
h1 {
    text-align: center;
    font-size: 20pt;
}


.footerText {
    margin: auto; 
    width: 300pt ; 
    height: 120pt;
    padding: 10pt;
    margin-bottom: 20pt;
}

@media only screen and (max-width: 600px) {
    .footerText {
        width: 90%
    }
    .contentIMG  {
        flex: 1 0 85%;
        height: 35vw;
    }
    .footerText {
        width: 90%
    }
    .descriptionContainer {
        
    max-width: 90%;
    }
  }


.navigationLink.active {
    transform: scale(1.3f);
    text-decoration: underline;
    cursor: default;
}


.miniLogo {
    float: left;
    width: 30pt;
    margin: 5pt;
    color: white;

}