*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    background-color: #1e1e1e;
    color: white;
    flex-direction: column;
}
h1{
    font-family: "Press Start 2P", system-ui;
    text-align: center;
}
h2{
    font-family: "Press Start 2P", system-ui;
    text-align: center;
}
h3{
    font-family: "Press Start 2P", system-ui;
    text-align: center;
}
h4{
    font-family: "Press Start 2P", system-ui;
    text-align: center;
}
h5{
    font-size: 18px;
}
header{
    display: flex;
    flex-direction: column;
}
.navBar{
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-family: "Press Start 2P", system-ui;
    justify-content: space-between;
    align-items: center;
}
.navBar a{
    text-decoration: none;
    color: white;
    margin-block: none;
}
main{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    font-size: 20px;
    margin-block: 2vh;
}
.navSect{
    border-left: solid 1px white;
    padding-left: 20px;
    padding-right: 10px
}
video{
    width: 50vw;
}

.buttonPlay {
    background-color: #1e1e1e;
    width:300px;
    padding:10px;
    font-size: 30px;
    text-decoration: none;
    color: #fffbd8;
    margin-left: auto;
    margin-right: auto;
}
.buttonPlay img{
    margin-left: auto;
    margin-right: auto;
}
.buttonPlay:hover {
    color: #1c7a95;
}

form{
    display: flex;
    flex-flow: column;
    width: 80%;
    margin-inline: auto;
    gap: 2vh;
}
.row{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
span .row{
    gap:5px;
}
.column{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hidden{
    display: none;
}
.quote{
    width: 70%;
    font-size: 20px;
    margin-block: 2vh;
    font-style: italic;
}
img .character{
    margin-block: auto;
    
}

section{
    margin-block: 2vh;
}
.vidvid{
    margin-top: -2vh;
    margin-bottom: 2vh;
}
.anchor{
    position: absolute;
    left: 25%;
    right:25%;
    anchor-name: --playbutton;
}
.target{
    position: absolute;
    position-anchor: --playbutton;
    position-area: left ;
}
#wb1{
    height: auto;
    width: 40vw;
    margin: auto;
}
#wb1Cap{
    height: auto;
    width: 70vw;
    margin: auto;
}
.aptPuzzles{
    display: flex;
    flex-flow: column;
    gap: 0;
    width:60vw;
    margin-left: auto;
    margin-right: auto;
}
#demotxt{
    font-size: 22px;
    padding-top: 150px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* Dropdown Button */

.btn {
    background: #1e1e1e;
    color: white;
    padding-inline: 16px;
    padding-block: 5px;
    font-size: 16px;
    border: none;
    font-family: "Press Start 2P", system-ui;
    letter-spacing: 5px;

}
/* The container <div> - needed to position the dropdown content */

/* Dropdown Content (Hidden by Default) */
.dropdown-content1 {
  display: none;
  position: absolute;
  background-color: #03720e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content2 {
  display: none;
  position: absolute;
  background-color: #03720e;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content1 a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content2 a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content1 a:hover {background-color: #0cb51d;}

.dropdown-content2 a:hover {background-color: #0cb51d;}

/* Show the dropdown menu on hover */
.dropdown1:hover .dropdown-content1 {display: block;}
.dropdown2:hover .dropdown-content2 {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown1:hover .dropbtn1 {background-color: #5b5b5b;}
.dropdown2:hover .dropbtn2 {background-color: #5b5b5b;}
.cnt:hover .btn {background-color: #5b5b5b;}

#for4{
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (max-width: 720px)  {
    .navBar {
        
        width: 96vw;
        margin-right: auto;
        margin-left: auto;
    }
    .navBar a{
        font-size: 14px;
    }
    .btn{
        font-size: 14PX;
    }
}
@media screen and (max-width: 480px)  {
    .navBar {
        width:95vw;
        margin-left: 0px;
    }
    .navBar a{
        font-size: 12px;
    }
    .btn{
        padding-inline: 4px;
        padding-block: 2px;
        font-size: 12px;
    }
}