body {
    background: #ecf0f1;
    color: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    font-family: HelveticaNeue, 'Helvetica Neue', 'Lucida Grande', Arial, sans-serif;
    margin: 0;
    margin-top: 80px;
    padding: 0;
}

html {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: fixed;
    margin: 0;
    padding: 0;
}

/* window BEGIN */


a {
  text-decoration: none;
}

.content{
  color: white;
}

.portfolio-text {
  margin-left: -60px;
}

#list a {
  color: white;
}

i{
  color: white;
}

ul{
  font-size: 14px;
  font-family: monospace;
    font-weight: 70;
}


span {
  line-height: 9px;
  
}

.terminal-command-box {
  display: inline-block;
  
}

.terminal-command{
  animation-delay: 1s;
}

.terminal-command:last-of-type {
  line-height: 9px;
  border-right: .05em solid;
  animation: caret 1s steps(1) infinite;
}


h1{
    padding: 5px;
    font-size: 14px;
    color: white;
    font-family: monospace;
    font-weight: 70;
    margin-top: -5px;
}

.stink{
  transform: scale(1.6);
  display: block;
   margin-right: auto;
   margin-left: auto;
   margin-top: 30px;
   margin-bottom: 50px;
}


@keyframes caret {
  50% {
    border-color: transparent;
  }
}


.terminal-prompt {
  color: #39ff14;
  display: inline-flex;
  margin-right: 10px;
}




.window {
  background: black;
  width: 75vw;
  height: 45vh;
  margin: auto;
  margin-top: 7vh;
  border: 1px solid #acacac;
  border-radius: 6px;
  box-shadow: 0px 0px 20px #acacac;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

.titlebar {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #ebebeb, color-stop(1.0, #d5d5d5)));
  background: -webkit-linear-gradient(top, #ebebeb, #d5d5d5);
  background: -moz-linear-gradient(top, #ebebeb, #d5d5d5);
  background: -ms-linear-gradient(top, #ebebeb, #d5d5d5);
  background: -o-linear-gradient(top, #ebebeb, #d5d5d5);
  background: linear-gradient(top, #ebebeb, #d5d5d5);
  color: #4d494d;
  font-size: 11pt;
  line-height: 20px;
  text-align: center;
  width: 100%;
  height: 20px;
  border-top: 1px solid #f3f1f3;
  border-bottom: 1px solid #b1aeb1;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  cursor: default;
}

.buttons {
  padding-left: 8px;
  padding-top: 3px;
  float: left;
  line-height: 0px;
}

.buttons:hover a {
  visibility: visible;
}

.close {
  background: #ff5c5c;
  font-size: 9pt;
  width: 11px;
  height: 11px;
  border: 1px solid #e33e41;
  border-radius: 50%;
  display: inline-block;
}

.zoinks{
  position: fixed;
  display: block;
 margin-top: -20vh;
 margin-left: 20vh;
 max-width: 50px;
}


.close:active {
  background: #c14645;
  border: 1px solid #b03537;
}

.close:active .closebutton {
  color: #4e0002;
}

.closebutton {
  color: #820005;
  visibility: hidden;
  cursor: default;
}

.minimize {
  background: #ffbd4c;
  font-size: 9pt;
  line-height: 11px;
  margin-left: 4px;
  width: 11px;
  height: 11px;
  border: 1px solid #e09e3e;
  border-radius: 50%;
  display: inline-block;
}

.minimize:active {
  background: #c08e38;
  border: 1px solid #af7c33;
}

.minimize:active .minimizebutton {
  color: #5a2607;
}

.minimizebutton {
  color: #9a5518;
  visibility: hidden;
  cursor: default;
}

.zoom {
  background: #00ca56;
  font-size: 9pt;
  line-height: 11px;
  margin-left: 6px;
  width: 11px;
  height: 11px;
  border: 1px solid #14ae46;
  border-radius: 50%;
  display: inline-block;
}

.zoom:active {
  background: #029740;
  border: 1px solid #128435;
}

.zoom:active .zoombutton {
  color: #003107;
}

.zoombutton {
  color: #006519;
  visibility: hidden;
  cursor: default;
}

.content {
  height: 75vh;
  padding: 10px;
}

footer {
  position:absolute;
  bottom:0;
  width:100%;
  height:160px;   /* Height of the footer */
  margin: 0;
padding: 0;

}

/* window END */

/* content BEGIN */

h3 {
  margin-top: 0px;
}

@media screen and (min-width: 768px) {
  ul, h1 {
      font-size: 18px; /* Adjust this value as needed */
  }
}
.cursor-static {
  animation: none !important;
  border-color: black !important; /* or any color the cursor currently has */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: fixed;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

.social-links a {
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

.social-links img {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
}

@media screen and (max-width: 768px) {
  .window {
    margin-top: 3vh;
    height: 40vh; /* Slightly reduce height for mobile */
  }

  .social-links {
    bottom: 3%;
  }
}

/* Instagram in-app browser specific adjustments */
@media screen and (max-width: 768px) and (max-height: 600px) {
  .window {
    margin-top: 2vh;
    height: 35vh; /* Further reduce height for Instagram's smaller viewport */
  }

  .social-links {
    bottom: 2%;
  }
}

/* content END */

