html {
  background: red;
  background-size: cover;
  min-height: 100%;
  zoom: 80%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'tox_typewriter';
  font-size: 20px;
  color: black;
  letter-spacing: 1.5px;
}

a {
  color: black;
  text-decoration: none;
}

/* Layout Containers */
.holdinitalltogether {
  width: 1201px;
  min-height: 100vh;
  margin: 0 auto;
  background: blue;
}

.title {
  width: 100%;
  height: 60px;
  margin: 100px auto 0;
  padding: 2px;
  font-size: 50px;
  background: green;
  position: relative;
  display: flex;    
  justify-content: center;
  font-size: 50px;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: blue;
  margin-top: 20px;
  align-items: flex-start;
}

.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: 10px;
}
.entry {
  width: 175px;
  height: 30px;
  padding: 2px;
  font-size: 25px;
  text-align: center;
  background: white;
  margin-top: 10px;
}
.entry:hover {
  background-color: #d9d9d9;
}
.entry:active {
  background-color: #d9d9d9;
  box-shadow: 2px 1px 0 #000;
  transform: translateY(4px);
}

.bar1 {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  height: 140px;
}
.plug {
 display: flex;
  flex-direction: column;
  width: 400px;
  height: 100%;
  border: 2px solid #000;
  background: #c0c0c0;
  box-shadow: 4px 4px 0 #000;
}

.vertical-display {
  width: 190px;
  padding-left: 8px;
  box-sizing: border-box;
}

.win95-window {
  width: 100%;
  height: 797px;
  border: 2px solid #000;
  background: url(https://tsubakiroom.neocities.org/blackdiary.png)
}

.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;
}