body {
  background-image: url("/windows_vista_beta_15 draft.jpg");
	background-position: fixed;
  font-size: 18px;
  margin: 0;
}

.navbar {
  width: 100%; /*Sets actual bar length, not the list, peep the .cat*/
  background-color: rgba(246, 255, 0, 0.285);
  Background-size: cover;
  border-bottom: 2px solid rgba(255, 0, 225, 0.251);
  color: white;
  backdrop-filter: blur(10px);
  position: fixed;
}
.navbar ul{
  list-style-type: none;
  display: flex;
  justify-content: space-evenly; /*auto-distributes items regardless of screen width*/
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.navbar ul li{
  padding: 1.0vw;
  display: grid;
  place-items: center;
  margin: 0;
  /* Previous ver: removed margins, flex distro handles instead*/
}

.window{
     background-color: rgba(255, 0, 255, 0.425);
     backdrop-filter: blur(5px);
     width: 1000px;
     border-radius: 8px;
     box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.7);
     position: relative;
     top: 0;
     left: 0;
     z-index: 9;
}

.window.interests-tab {
  width: 400px;
  position: absolute;
}

.window-header{
  padding: 0.6rem;
}
.window-header p{
  margin-top: 10px;
}
.window-body-wrapper{
  padding: 0 0.5rem 0.5rem 0.5rem;
}
.window-body{
  background-color: rgba(0, 28, 88, 0.623);
  border-radius: 7px;
  width: 100%;
  height: 100px;
  position: fill;
}

.buttons{
  display: flex;
  position: absolute;
  top: 0;
  right: 10px;
}

.window-header .buttons .button {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.window-header .buttons .button:hover {
 background: linear-gradient(
  rgba(255, 255, 0, 0.6) 20px,
  rgba(192, 192, 192, 0.3) 17px,
  rgba(0, 130, 124, 0.6) 20px
 );
}

.window-header .buttons .button.close{
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  border-bottom-right-radius: 5px;
}
.window-header .buttons .button.close:hover {
  background: linear-gradient(
    rgba(192, 192, 192, 0.6) 6px,
    rgba(255, 0, 0, 0.7) 15px,
    rgba(192, 192, 192, 0.6) 27px
  );
}
.window-header .buttons .button.minimize{
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  border-bottom-left-radius: 5px;
}

.window-header .buttons .button.maximize{
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.glass-borders {
	background-color: rgba(246, 255, 0, 0.342);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12),inset 0 0 8px rgba(255,255,255,.1),0 5px 5px rgba(0,0,0,.5);
	border: 1px solid #e4e4e4;
    border-radius: 3px;
	padding: 5px;
	margin: 8px auto 8px auto;
    width: 95%;
    height: 50%;
    position: fixed;
    top: 30%;
    left: 3%;
}

.gallery-container{
width: 25%;
margin: 100px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 40px;
}

.card:hover{
  transform: scale(2);
}

.card-content h3{
  color: yellow;
  font-size: 80%;
}

.card{
  background-color: rgba(255, 0, 255, 0.342);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.12),inset 0 0 8px rgba(255,255,255,.1),0 5px 5px rgba(0,0,0,.5);
  flex:1;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0,0,0);
  width: 60%;
  height: 20%;
  overflow: visible;
  transition: transform 0.3s ease-in-out;
}

.card img{
  width: 90%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  margin-left: 25px;
}

.card-content{
  padding: 10px;
}

.popup-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .2s linear;
}

.popup-image{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.9);
  z-index: 50;
  display: none; /*leaving the display command blank defaults to block = it will show on default. Set it to "NONE" and it will not appear upon loading, meaning it will have to be triggered by another condition/action*/
}

.popup-image span{
  position: absolute;
  top: 0; right: 10px;
  font-size: 40px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 50;
}

.popup-image img{
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: contain;

}

@font-face{
      font-family: frutigerbold;
      src: url(/Font/Frutiger_bold.ttf);
      
      font-family: frutiger;
      src: url(/Font/Frutiger.ttf);
}

p, h1{
  margin: 0;
}

h1, h2, h3{
  font-family: frutiger;
}
p, li{
font-family: frutiger;
font-size: 110%;
}