*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body{
    width: 100%;
    min-height: 100vh;
    background-color: white;
}

@font-face {
    font-family: 'bankgothic_lt_btlight';
    src: url('bgothl-webfont.woff2') format('woff2'),
         url('bgothl-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

#menuBg{
    position: fixed;
    top: 0;
    width: 100%;
    height: 12vw;
    color: black;
    background-color: white;
    z-index: 10;
}

ul{
    position: fixed;
    margin: auto;
    padding: 1vw 5vw 1vw 5vw;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: larger;
    font-family: 'bankgothic_lt_btlight';
    font-weight: bold;
    z-index: 25;
}
ul li{
    list-style: none;
    padding: 3%;
}
ul li a{
    text-decoration: none;
    padding: 1vw;
    border-radius: 20px;
}
ul li a:hover,
ul li a.active{
    background-color: black;
    color: white;
}

p{
  background-color: white;
  color:rgb(0, 0, 0);
  padding: 50px;
  margin: 0;
  font-size: 1.5em;
  font-family: 'Open Sans Condensed', sans-serif;
  letter-spacing: 4px;
}