
/* general css */
body{
  font-family: Arial, Helvetica, sans-serif;  
  background: linear-gradient(#16224d, #8d9cd3 250%);
  background-attachment: fixed;
  font-size: 125%;
height: 100%;
margin: 0;
overflow: hidden;
}
a {
  color: cyan;
}

/* window system css */
.aero-window {
            position: absolute;
            /* glass */
            background: rgba(20, 25, 45, 0.55);
            backdrop-filter: blur(12px); /*blur for backdrop */
            
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 20px 40px rgba(0,0,0,0.7);
            display: flex;
            flex-direction: column;
            resize: both;
            overflow: hidden;
        }

.title-bar {
            height: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5px 0 10px;
            cursor: grab;
            /* gradient */
            background: linear-gradient(to bottom,rgba(255,255,255,0.12),rgba(0,0,0,0.25));
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

.title-bar:active {
            cursor: grabbing;
        }

/* text with aero things or something */
.title-text {
            color: #e8e6e3;
            font-size: 12px;
            text-shadow: 0 0 6px rgba(255,255,255,0.25);
            user-select: none;
        }

.window-content {
            background-color: #0f0f0f; /*#f1f1f1;*/
            color: #f1f1f1;
            flex-grow: 1;
            margin: 0 4px 4px 4px; /* glass corners */
            border: 1px solid #444;
            padding: 15px;
            overflow-y: auto;
}

/* if window is hidden*/
.hidden {
  display: none;
}

/* button that closes. pretty self explanatory*/
.close-button {
            width: 28px;
            height: 20px;
            border: 1px solid rgba(138, 12, 12, 0.2);
            border-radius: 3px;
           background: linear-gradient(to bottom, #e04343 0%, #c91717 100%);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
            cursor: default;
            position: relative;
            color: #f1f1f1;
            text-shadow: 1px 1px #000000;
        }

.button{
  border-color: #f1f1f1;
  color: #f1f1f1;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  background: transparent;
  border-radius: 20px;
}
.button:hover{
  background-color: #f1f1f1;
  color:#0f0f0f;
}
/* styling in the css file for window 1 main because better visibility in html but shit visibility in css*/
.window1styling {
  text-align: center;
}

footer {
  position: fixed;
  bottom: 7px;
  width: 100%;
  font-size: 75%;
}

/* styling window 4 (servers)*/
.window4monoscape{
  background-color: #303030;
  font-family: 'Courier New', Courier, monospace;
}

.window4flexbox{
display: flex;
}

.window4button{
  border: 2px solid #433157;
}
.window4button:hover {
  background-color: #433157;
  color: #f1f1f1;
}
.blockyblock {
  margin: 40px auto;
  width: fit-content;
   display: flex;
  flex-wrap: wrap;
  margin-top: 60vh;
  justify-content: center;
}
.blockyitem {
 border: 0.15rem solid #fff;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 20rem;
    margin-left: 5rem;
    margin-right: 5rem;
}
.blockyblock p{
  font-size: 80%;
}
.blockyblock img {
  max-width: 20rem;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.blockyblock img:hover {
  transform: scale(1.02);
}
@media (max-width: 709px) {
  .blockyitem {
    margin-left: 0rem;
    margin-right: 0rem;
  }
}