header{
    display: flex;              /* Makes items go in a row */
    justify-content: space-between; /* Pushes logo left, nav right */
    align-items: center;        /* Vertically centers them */
    padding: 10px 20px;
    background-color: blue;
    position: -webkit-sticky;
    position: sticky;
    top:0;
 }
.menu {
    list-style: none;
    display: flex;   /* Makes nav items horizontal */
    justify-content: center;
    gap: 30px;       /* Space between menu items */
    margin: 0;
    padding: 0;
}

iframe{
    width:600;
    height:450; 
    border:0;
}

nav ul{font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
    word-spacing: 5px;
    color: white;
}

nav a{
    color: white;
}

body{
    font-size:  20px;
    font-weight:normal;
    word-spacing: 5px;
    color:bisque
    background-color:blanchedalmond
}

footer{
    background-color: blue; 
    font-family: Arial, Helvetica, sans-serif;
    font-size:12px;
    font-weight: bold;
    color: white;
}

h2{
    font-size=12px; 
    font-weight: bold; 
    color: white

}

@media (max-width: 768px) {
header{
    flex-direction: column;              /* Makes items go in vertical */
    /*justify-content: space-between;  Pushes logo left, nav right */ 
    align-items: flex-start;        
    padding: 10px 20px;
    background-color: blue;
    position: -webkit-sticky;
    position: sticky;
    top:0;
 }

    .menu {
    flex-direction: column;   /* Stack vertically */
    width: 100%;
    margin-top: 10px;
  }

  .myImage{
    width: 100%;
    margin-top: 10px;
  }

  iframe{
    width: 100%;
    margin-top: 10px;

  }

  .myCollage{
    width: 100%;
    margin-top: 10px;

  }
  .myContact{
    width: 100%;
    margin-top: 10px;
  }

}
