@import url('https://fonts.googleapis.com/css?family=Finger+Paint&display=swap');
body {
    min-height: 100vh;
  background-color: black;
  text-align: center;
  color: white;
  background-image: url('https://i.imgur.com/42GZ51d.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100vw;
  font-family: 'Finger Paint', cursive;
 }

.main_logo {
  max-height: 150px;
  max-width: 150px;
  position: absolute;
  top: 0;
  left: 0;
}

#sticky-header {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 99999;
  background: black;
  top: 0;
  border-bottom: 1px solid red;
  align-items: end;
}

.menu ul li a {
  font-size: 1.1rem;
  text-decoration: none;
  color: white;
  padding: 10px 20px !important;
  margin: 10px 0;
  border: 2px solid white;
  border-radius: 50px;
  margin: 0 5px;
  height: 50px
}

.menu ul li a:hover {
  background: white;
  color: rgba(18, 35, 58, 1) !important;
}


.nav-link {
  color: rgba(255,255,255,.5);
}

.dropdown-menu {
    background: rgba(18, 35, 58, 1);
    border: none;
    border-radius: 25px;
    padding: 5px;
}

.dropdown-menu a {
  margin: 5px 0 !important;
}

p {
  width: 60%;
  margin: 5px auto;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid black;
  padding 5px;
}

.navbar-logo-text {
  margin-left: 140px;
  color: white;
}

.footer {
  margin-top: 50px;
  min-height = 300px;
  bottom 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

.footer-logo {
  max-width: 150px;
  max-height: 150px;
}

.gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33%;
    -moz-column-width: 33%;
    column-width: 33%;
}

.gallery .pics {
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
}

.required {
    color: red !important;
}
}