/* 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 {
  
  background-image: url("images/backgrounds/Screenshot\ 2025-09-23\ 171607.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
 background-color: darkblue;
  color: black;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  
}

.topnav {
  border: solid darkblue 3px;
  border-radius: 5px;
  height: 40px;
  width: 700px;
  position: relative;
  background-color: #020a7c50;
  overflow: hidden;
  display: flex;
  align-items: center; 
}

.topnav a {

  padding: 25px 5px;
  text-decoration: none;
}


.panel {
  border: solid darkblue 5px;
 

}

.main_content {
  border-radius: 5px;
  margin-top: 75px;
  width: 1200px;
  border: solid white 3px;
}

.topbar {
  transform: translateY(-150%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  top: 10px;
  width: 700px;
  position: fixed;
  border-radius: 5px;
  border: solid white 3px;
}

.panel-body h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: white;
}

.logo-container p {
  margin-bottom: 0;
}

.topbar.is-visible {
  transform: translateY(0);
}

.NoPage {

margin-top: 40px;
  
}

.panel-heading { 
  background-image: url("images/backgrounds/test_bg.gif");


  border: solid darkblue 3px;
}

.panel-body {

  background-image: url("images/ProfileBG.png");
  background-attachment: scroll;
  background-size: cover;
}

.logo-container {
  
  display: flex;
  align-items: center;
  font-size: 50px;
  gap: 10px;
}

.active:hover {
  transform: scale(1.1)
}

.PageUnderConst {
  margin-top: 200px;
  margin-left: auto;
  margin-right: auto;
  background-color: yellow;
  border: solid black 3px;
  width: 400px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 5px;
}
