/* 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." */

head {
  background-color: #373737;
  color: white;
  font-family: Arial;
}

p{
  font-family: Arial;
}

/* Navbar */

ul li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover, .dropdown:hover .dropbtn {
  background-color: #B3FCFF;
  color: black;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(25,25,25);
  min-width: 160px;
  color: white;
  z-index: 2;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #B3FCFF;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Gallery */

.column img {
  margin-top: 12px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Modals */

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 3;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.2);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  cursor: pointer;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover {
  color: #B3FCFF;
}

/* Image Tooltips */

.container {
  position: relative;
  width: 100%;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .image {
  opacity: 0.7;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color: rgba(25,25,25,0.8);
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

/* responsive layout */

@media screen and (min-width: 1080px) {

  body {
    margin: auto;
    background-color: rgba(0, 0, 0, 100);
    background-image: url('/images/Starwolf2_small.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .logo {
    width: 30%;
    background-color: rgba(0,0,0,0);
    position: fixed;
    top: 2px;
    left: 10%;
    margin-top: 0px;
    display: inline-block;
    color: #B3FCFF;
    font-family: Georgia;
    font-size: 36px;
  }

  .body {
    width: 80%;
    background-color: rgba(55, 55, 55,.8);
    padding-top: 50px;
    color: white;
    z-index: 1;
  }
  
  .nav {
    position: fixed;
    margin-top: 0;
    width: 100%;
    z-index: 2;
    color: white;
  }
  
    ul {
    list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    width: 81%;
    background-color: rgb(25, 25, 25);
  }
  
    .column {
    float: left;
    width: 31%;
    padding: 11px;
    z-index: 1;
  }
  
  ul li {
    float: right;
    font-family: verdana;
    font-weight: bold;
    font-size: 16px;
  }

}

@media screen and (max-width: 1079px) {

  body {
    background-image: url('/images/Starwolf2_mobile.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
  }
  
  .logo {
    width: 40%;
    background-color: rgba(0,0,0,0);
    position: fixed;
    top: 17px;
    left: 20px;
    margin-top: 0px;
    display: inline-block;
    color: #B3FCFF;
    font-family: Georgia;
    font-size: 36px;
  }

  .body {
    width: 95%;
    background-color: rgba(55, 55, 55,.8);
    padding-top: 50px;
    color: white;
    z-index: 1;
  }
  
  .nav {
    position: fixed;
    margin-top: 0;
    width: 100%;
    z-index: 2;
    color: white;
  }
  
  ul {
    list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    width: 100%;
    background-color: rgb(25, 25, 25);
  }
  
  .column {
    float: left;
    width: 31%;
    padding: 10px;
    z-index: 1;
  }
  
  ul li {
    float: right;
    font-family: verdana;
    font-weight: bold;
    font-size: 28px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: 0%;
    background-color: rgb(25,25,25);
    min-width: 160px;
    color: white;
    z-index: 2;
  }
      
}