*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* nav{
    position: fixed;
    width: 98%;
    height: 5%;
    background-color: beige;
    left: 50%;
    transform: translate(-50%);
    top: 10px;
    border-radius: 15px;
    padding: 20px;

}
nav ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style-type: none;
}
nav ul li{
    align-content: center;
} */

 nav {
  padding: 15px;
  background-color:maroon;
  margin: 10px 10px 0 10px;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 15px;
}
.herosec{
    width: 100vw;
    height: 100vh; 
    position: relative;
    overflow: hidden;
}
.herosec iframe{
    width: 100%;
    height: 100%;
    border: none; 
    display: block;
    position: relative;
    z-index: 1;
}
h1 {
    position:absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: -1; 
    color: maroon;
    font-size: 22vh; 
    text-align: center;
    font-family: fantasy;
    text-transform: uppercase;
    
}