*{
    /*background-color: #070708;*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #070708;
}

header{
    border-width: 4px;
    border-radius: 3px;
}

.btn{
    text-align: center;
  display: grid;
  position: relative;
  width: 35%;
  margin: auto;
  background-color: #262626;
  border: 5px solid  #070708;
  padding: 12px 30px;
  margin-bottom: 15%;
  cursor: pointer;
  font-size: 1em;
  font-optical-sizing: auto;
  font-family: Papyrus;
  font-weight: bolder;
  color: grey;
  transition: 0.7s ease;
}

.container{
     display: flex;
    justify-content: center; 
    align-items: flex-start; 
    height: auto; 
}

.exp{
    font-size: 2em;
    padding-top: 50px;
    padding-bottom: 50px;
    border-width: 5px;
    display: flex;
    text-align: center; 
    margin: 30px 50px 30px 30px;
    background-color: #333333;
    border-color: #1a1a1a;
    border-style: solid;
    width: 30%;
    float: right;
    color: #d9d9d9;
    align-items: center;
    justify-content: center;
    font-family: Papyrus;
}

.gameinteractions{
    right: 0%;
    /*position: absolute;*/
    padding-top: 50px;
    padding-bottom: 50px;
    border-width: 5px;
    display: flex;
    text-align: center; 
    background-color: #333333;
    border-color: #1a1a1a;
    border-style: solid;
    height: 50%;
    color: #d9d9d9;
    align-items: right;
    justify-content: right;
    font-family: Papyrus;
}

.aboutGame{
    /*position: absolute;*/
    padding-top: 50px;
    padding-bottom: 50px;
    border-width: 5px;
    display: flex;
    text-align: center; 
    background-color: #333333;
    border-color: #1a1a1a;
    border-style: solid;
    height: 50%;
    color: #d9d9d9;
    align-items: right;
    justify-content: right;
    font-family: Papyrus;
}

/* make sure to change your width as necessary, so maybe like 1368px if your on a chromebook or smth maybe */
@media (max-width: 768px) {
    .general-container {
        /* If width is smaller than a certain amount of pixels, the layout changes from a row to a column */
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .police {
        position: relative;
        justify-content:center;
        margin-left: auto;
        margin-right: auto;
        width: 25%;
    }
    
    .player {
        position: relative;
        justify-content:center;
        margin-left: auto;
        margin-right: auto;
        width: 10%;
    }
    
    .gameinteractions {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: 3vw;
    }
    
    .aboutGame {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        font-size: 3vw;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .video-containers {
        position: relative;
    }
    
    .video {
        width: 80%;
    }
    
    .pictureColumnRight {
        display: flex;
        position: relative;
        width: 100%;
    }
    
    .tester {
        width: 0%;
    }
}

@media (min-width: 768px) {
    .general-container {
        display: flex;
        flex-direction: row;
    }
    
    .police {
        position: absolute;
        margin-left: -18%;
        width: 50%;
    }
    
    .player {
        position: absolute;
        margin-left: 8%;
        width: 10%;
    }
    
    .gameinteractions {
        position: absolute;
        margin-right: 1%;
        float: right;
        width: 20%;
        height: auto;
        font-size: 1.5vw;
    }
    
    .aboutGame {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        height: auto;
        font-size: 2vw;
    }
    
    .video-containers {
        position: absolute;
    }
    
    .video {
        width: 50%;
    }
    
    .pictureColumnRight {
        display: grid;
        position: absolute;
        right: 2%;
        width: 20%;
    }
    
    .tester {
        width: 100%;
    }
}

.player{
    display: flex;
    aspect-ratio: 2 / 6;
}

.police{
    /*position: absolute;*/
    display: flex;
    aspect-ratio: 16 / 9;
}

.flex-row1{
    display: flex;
    flex-flow: row-wrap;
    justify-content: center;
    align-items: center;
}

li{
    list-style: none;
}

a{
    color: #d9d9d9;
    text-decoration: none;
    font-family: Papyrus;
}

.tester{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    max-height: 660px;
    aspect-ratio: 16 / 12;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.video{
    display: block;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-containers{
    display: flex; 
    /*position: absolute;*/
    justify-content: center; 
    align-items: center;
}

.navbar{
    background: url('https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA2L3JtNTI0LWJnLTAyNmQteC5qcGc.jpg') repeat top center ;
    background-size: 100px 100px;
    height: 100px;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 999999;
}

.nav-menu{
    display: flex;
    justify-content: spce-between;
    align-items: center;
    gap: 60px;
    margin-left: auto;
    z-index: 999999;
}

.nav-link{
    transition: 0.7s ease;
}

.nav-link:hover{
    color: #9198a3;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

@media(max-width:768px){
    .hamburger{
        display: block;
        margin-left: auto;
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity:0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu{
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background: url('https://images.rawpixel.com/image_800/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA2L3JtNTI0LWJnLTAyNmQteC5qcGc.jpg') repeat top center ;
        background-size: 100px 100px;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    
    .nav-item{
        margin: 16px 0;
    }
    
    .nav-menu.active{
        left: 0;
    }
}

.title{
    color: #d9d9d9;
    text-align: center;
    font-size: 80px;
    font-family: Papyrus;
    text-decoration: underline;
    
}

.CharPic{
   display: block;
   margin-left: auto;
   margin-right: auto;
   width: 60%;
   height: 600px;
   
}

.train{
    animation-name: trainMovement;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
    position:fixed; 
    width:100%; 
    bottom:0%;
    margin-bottom: 0%;
    background-image: url('https://codehs.com/uploads/f3f2b4c8da3f155c355d5652cb016395');
    background-repeat: repeat-x;
    background-size: 256px 128px;
    height: 128px;
    z-index: 9999;
}

@keyframes trainMovement{
    from { background-position-x: 0px; }
    to { background-position-x: 256px; }
}

.pic1{
    display: block;
    position: relative;
    width: 192px;
    float: left;
    
}

.pic2{
    display: block;
    position: relative;
    width: 192px;
    float: left;
}

.pic3{
    display: block;
    position: relative;
    width: 192px;
    float: left;
}

.pictureColumnRight{
    top: 20%;
    bottom: 20%;
}

@media (max-width: 768px){
    .hunger {
        width: 30%;
        height: 50%;
    }
    
    .money {
        width: 30%;
        height: 50%;
    }
    
    .thirst {
        width: 30%;
        height: 50%;
    }
}

@media (min-width: 768px){
    .hunger {
        width: 100%;
        height: 100%;
    }
    
    .money {
        width: 100%;
        height: 100%;
    }
    
    .thirst {
        width: 100%;
        height: 100%;
    }
}

.hunger{
    display: block;
    position: relative;
    max-width: 200px;
    float: right;
    top: auto;
    bottom: auto;
    margin: auto;
    aspect-ratio: 1/1;
}

.money{
    display: block;
    position: relative;
    max-width: 200px;
    float: right;
    top: auto;
    bottom: auto;
    margin: auto;
    aspect-ratio: 1/1;
}

.thirst{
    display: block;
    position: relative;
    max-width: 200px;
    float: right;
    top: auto;
    bottom: auto;
    margin: auto;
    aspect-ratio: 1/1;
}

.mainAboutUs{
    padding-left: 10%;
    padding-top: 30px;
} 

@media (max-width: 900px) {
    .inspiration {
        padding: 100px;
        padding-top: 20px;
        padding-bottom: 25%;
    }
}

@media (min-width: 900px) {
    .inspiration {
        padding: 100px;
        padding-top: 20px;
        padding-bottom: 10%;
    }
}

@media (max-width: 768px) {
    .mainAboutUs{
        padding-right: 2%;
    }
    
    .my-table tbody {
        display: flex;
        flex-direction: row;
    }
    
    .my-table tbody tr {
        display: flex;
        flex-direction: column;
    }
    
    .my-table tbody tr td {
        width: auto;
        height: 100%;
    }
    
    .my-table tbody tr td p {
        font-size: 2.25vw;
    }
}

@media (min-width: 768px) {
    .mainAboutUs{
        padding-right: 10%;
    }
    
    .my-table tbody {
        display: flex;
        flex-direction: column;
    }
    
    .my-table tbody tr {
        display: inline-table;
        flex-direction: row;
    }
    
    .my-table tbody tr td {
        width: 50%;
        height: auto;
    }
    
    .my-table tbody tr td p {
        font-size: 1em;
    }
}

.my-table {
    text-align: center;
    background-color: #262626;
    border-color: #1a1a1a;
    display:block;
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 20px auto;
}

.my-table td {
    border: 4px solid;
    padding: 20px;
    text-align: center;
}

.my-table tbody tr td p {
    max-height: 300px;
}

.my-table td:nth-child(even) {
     background-color: #262626;
}

.ourPictures{
    height:300px;
}

.Lillyen{
    color: white;
    font-family: Papyrus;
    font-weight: bolder;
    font-size: 1.1em;
}

.Brennan{
    color: white;
    font-family: Papyrus;
    font-weight: bolder;
    font-size: 1.1em;
}

.inspiration{
    color: white;
    font-size: 1em;
    border: 4px outset White ;
    text-align: center;
    border: none;
}