@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@700&display=swap');

body {
  background-color: #170b31;
  background-image: url("dragon.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  font-family: 'Antonio', sans-serif;
  margin: 0px;
}

.content-box {
  background-color: #ffffff;
  color: #000000;
  max-width: 900px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  border: 7px solid #452a7f;
  border-radius: 30px;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.3);
  overflow: hidden;
  min-height: 40em;
}

.header-bar {
  background-color: #170b31;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  border-bottom: 5px solid #452a7f;
}

.nav-links {
  background-color: #241251;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 3px solid #452a7f;
}

.Home, .about .youtube {
  display: inline-block;
  text-decoration: none;
}

.Home img {
  max-width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.5));
}

.about img {
  max-width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.5));
}

.youtube img {
  max-width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.5));
}

.Home:hover, .about:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.Home:hover img, .about:hover img {
  filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.8));
}

.main-padding {
  padding: 25px;
}

h1 {
  font-family: 'Antonio', sans-serif;
  color: #000000;
  margin-top: 0px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .content-box {
    width: 95%;
  }
  .Home img {
    max-width: 150px;
  }
  .about img {
    max-width: 100px;
  }
}