/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  text-align: justify;
  background: black !important;
  color: white;
    height: 100%;
    margin: 0;
  position: relative;
}

.container {
  height: 80vh;
  width: 50%;
  border: 1px blue dashed;
  position: absolute;
  background: transparent;
      left: 50%;
      top: 50%;
    transform: translate(-50%, 10%);
}

.top {
height: 8vh;
width: 100%;
border: 1px red solid;
border-radius: 0px 40px 0 0;
display: block;
margin-bottom: 5px;
}
.nav {
height: 4vh;
width: 100%;
border: 1px red solid;
border-radius: 2px 2px 2px 2px;
display: block;
}