html {
  background: url(water070neohimeism.png) no-repeat center center fixed;
  background-size: cover;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  color: black;
  letter-spacing: 1.5px;
  text-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
  animation: textflicker 0.01s infinite alternate;
  zoom: 80%;
}

a {
  color: black;
}

/* Responsive Margins */
@media screen and (min-width: 1200px) {
  body {
    margin-left: 20rem;
    margin-right: 20rem;
  }
}

@media screen and (min-width: 600px) {
  body {
    margin-left: 5em;
    margin-right: 5em;
  }
}

/* credit for this CRTV code goes to Danny Schapeit, his github is here --> https://github.com/D3nn7 */
/* Text Flicker Animation */
@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
  }
  to {
    text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
  }
}

/* credit for THIS CRTV code goes to https://oudkee.neocities.org/tutorials, based on the original tutorial here https://aleclownes.com/2017/02/01/crt-display.html */
/* CRT Flicker Effect - Before */
.crt::before {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
              linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  z-index: 2;
  pointer-events: none;
}

/* CRT Flicker Animation */
@keyframes flicker {
  0%   { opacity: 0.27861; }
  5%   { opacity: 0.34769; }
  10%  { opacity: 0.23604; }
  15%  { opacity: 0.10626; }
  20%  { opacity: 0.18128; }
  25%  { opacity: 0.10626; }
  30%  { opacity: 0.18128; }
  35%  { opacity: 0.23604; }
}

.crt::after {
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

/* Layout Containers */
.holdinitalltogether {
  width: 850px;
  min-height: 100vh;
  margin: 0 auto;
}

.title {
  width: 99%;
  height: 60px;
  margin: 100px auto 0;
  padding: 2px;
  font-size: 50px;
  border: 2px solid #000;
  background: #c0c0c0;
  box-shadow: 4px 4px black;
  position: relative;
}
.innertitle {
  width: 100%;      
  height: 100%;     
  background: #c0c0c0;
  border: 2px outset white;
  box-sizing: border-box; 
  display: flex;    
  justify-content: center;
  align-items: center;
  font-size: 50px;
}
.quote {
  width: 100%;
  padding: 2px;
  margin: 20px 0;
  font-size: 25px;
  color: white;
  background: black;
  box-shadow: 4px 4px black;
  overflow: hidden;
  box-sizing: border-box;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: red;
  margin-top: 20px;
  align-items: flex-start;
}

.me {
  width: 232px;
  height: 232px;
  text-align: center;
  background: black;
  flex-shrink: 0;
}

.mainbox {
  width: 68%;
  height: 213px;
  padding: 10px;
  font-size: 25px;
  color: black;
  background: black;
}

.entry-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}
.entry {
  width: 175px;
  height: 30px;
  padding: 2px;
  font-size: 25px;
  text-align: center;
  border: 2px solid #000;
  background: #e0e0e0;
  border-top: 2px solid white;
  box-shadow: 4px 4px 0 #000;
}


/*credit for this CSS goes to https://codepen.io/supember*/
/* Windows 95 Window Style */
.win95-window {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 100%;
  border: 2px solid #000;
  background: #c0c0c0;
  box-shadow: 4px 4px 0 #000;
}
.win95-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  background: navy;
  color: white;
}
.title2 {
  margin: 0;
  font-size: 16px;
}
.win95-buttons {
  display: flex;
  gap: 4px;
}
.win95-btn {
  padding: 2px 6px;
  font-size: 14px;
  background: #c0c0c0;
  border: 2px outset white;
  cursor: pointer;
}
.win95-body {
  flex-grow: 1;
  padding: 15px;
  background: #e0e0e0;
  border-top: 2px solid white;
}

.iconwindow {
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 100%;
  border: 2px solid #000;
  background: #c0c0c0;
  box-shadow: 4px 4px black;
}
.iconwindowbody {
  flex-grow: 1;
  padding: 3px;
  background: #e0e0e0;
  border-top: 2px solid white;
}
.iconwindow img{
  border: 2px solid #000;
}

.window-row {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px; 
  margin-top: 15px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: #000;
}