html {
    scroll-behavior: smooth;
}

body {
    background-color: #222;
}

.home{
    position: relative;
    width: auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.topnav {
    background-color: #333;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
  }
  
  .topnav a {
    float: right;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }

  audio {
    float: left;
    width: 420px;
    height: 25px;
    padding: 14px 16px;
  }

  audio::-webkit-media-controls-panel{
    background-color:rgb(92, 105, 117);
    opacity: .8;
  }

.home h1 {
    text-align: center;
    font-size: 3rem;
    font-family: 'Courier New', Courier, monospace;
    -webkit-text-fill-color: #F0F8FF;
    color: aliceblue;
    padding: 20px;
    margin: 10px;
    z-index: 1;
    opacity: 1;
}
.home b {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    -webkit-text-fill-color: #F0F8FF;
    color: aliceblue;
    z-index: 1;
    opacity: .8;
}

.video-container {
    position: absolute;
    height: auto;
    width: auto;
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: aliceblue;
    width: 100%;
    height: 100%;
    opacity: .3;
}
.about{
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    margin: auto;
    padding: auto;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap-reverse;

}
.about img{
    margin: 10px;
    width: 90%;
    max-width: 800px;
    height: auto;
    align-items: center;
    overflow: hidden;
    
}
.about p{
    text-align: center;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    -webkit-text-fill-color: #F0F8FF;
    color: aliceblue;
    opacity: .9;
}
.contact{
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: auto;
    display: flex;
    margin: auto;
    padding: auto;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap-reverse;
}
.contact p{
    text-align: center;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    -webkit-text-fill-color: #F0F8FF;
    color: aliceblue;
    padding: 20px;
    margin: 15px;
    z-index: 1;
    opacity: .9;
}
a:link {
    color: #ddd;
}
a:visited {
    color: aliceblue;
}