html,
body {
    display: flex;
    flex-direction: column;
  font-size: 13px;
  height: 100%;
  max-height: 100%;
}

body {
  font-family: "Courier Prime", monospace;
  background-color: #f0f0f0;
  font-weight: 300;
}

button:focus {
  outline: none;
}

#about-me {
  margin-top: -25vh;
}

.about-me-header {
  display: none;
}
.about-header {
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.no-dec {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-body .container {
}

.email {
  font-size: 32px;
}
h1 {
  margin: 0;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

ul {
  padding-left: 1em;
}

ul,
li {
  list-style: none;
}

hr {
  border-style: solid;
  width: 10em;
  margin: 0.5em 0;
}

section {
  width: 100%;
  justify-content: space-evenly;
}

.name-link {
  /* border-bottom: 1px dotted #fff; */
  padding: 0.25em;
}

.name-link,
.comp-link {
  display: flex;
  align-items: center;
}
.name,
.term-cursor {
  display: inline-block;
}

.name:hover {
  font-style: italic;
}

.term-cursor {
  width: 1em;
  height: 1.8em;
  background: #333;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.values li:first-child {
  margin-bottom: 0.5em;
}
section {
  width: 80%;
}

.avatar-holder {
  min-width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 1em;
}

.avatar {
  display: inline;
  margin: 0 auto;

  vertical-align: middle;
}

.about {
    margin-bottom: 5em;
}

.go-to {
  padding: 1em;
}

.go-to:hover {
  text-decoration: underline;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}

.index-container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.index-container ul {
    text-align: right;
    padding: 2em;
}

.container {
  height: 80vh;
}
.mb-0 {
  margin-bottom: 0;
}


@media screen and (min-width: 420px) {
  .container {
    height: 90vh;
  }
  
  .about-me-header {
    display: block;
  }
}



@media screen and (min-width: 768px) {
    .content-area {
        width: 50%;
      }
  section {
    width: 50%;
  }
  
  .social-row > a {
    margin-right: 1em;
  }

  .twitter {
    margin-right: 0;
  }

  ul {
    padding-left: 2.5em;
  }
  .values li:first-child {
    margin-bottom: 0;
  }
}

.about-body p,
.about-body li {
  font-size: 1.25em;
}



footer {
  display: flex;
  justify-content: center;
}

footer a {
  color: #fff;
}

.social-img {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  margin-right: 1em;
  
    justify-content: flex-start;
  
}

.social-row {
    width: 100%;
}

.flex-col {
  flex-direction: column;
}

.twitter:hover {
  color: rgb(29, 161, 242);
}

.linkedin:hover {
  color: #0077b5;
}

.instagram:hover {
  color: #d6249f;
}

.ab-cont{    padding: 2em;}



.window {
    width: 75vw;
    height: 50vh;
    background: #c0c0c0; /* Light grey background */
    border: 1px solid #000; /* Black border for classic look */
    box-shadow: inset 1px 1px 0px 1px #fff, /* Inner white highlight */
                inset -1px -1px 0px 1px #808080; /* Inner dark shadow */
                transition: all 0.3s ease;

  }
  
  .title-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff 0%, #dfdfdf 100%); /* Gradient for 3D effect */
    border-bottom: 1px solid #000; /* Bottom border for separation */
    padding: 2px 5px;
  }
  
  .title-bar-button {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    background: linear-gradient(to bottom, #ffffff 0%, #dfdfdf 100%); /* Gradient for 3D button */
    border: 1px solid #000; /* Border for button */
    box-shadow: inset 1px 1px 0px 1px #fff, /* Inner white highlight for button */
                inset -1px -1px 0px 1px #808080; /* Inner dark shadow for button */
  }
  
  .title-bar-content {
    flex-grow: 1;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    user-select: none; /* Prevent text selection */
  }
  
  .content {
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    /* align-items: center; */
  }



  .content-area {
    padding: 2em;
  }

  @keyframes minimize {
    0% {
        transform: scale(1);
        opacity: 1;
        bottom: initial;
        right: initial;
    }
    100% {
        transform: scale(0.05);
        opacity: 0;
        bottom: 10px;
        right: 10px;
    }
}

@keyframes restore {
    0% {
        transform: scale(0.05);
        opacity: 0;
        bottom: 10px;
        right: 10px;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        bottom: initial;
        right: initial;
    }
}

.window.minimized {
    height: 0;
    padding: 0;
    border: none;
}
.window-body {
    /* transition: visibility 0.5s ease;     */
}
.minimized .content.window-body {
    visibility: hidden;
}

/* @keyframes fadeIn {
    99% {
      visibility: hidden;
    }
    100% {
      visibility: visible;
    }
  }
   */

.fof {
    font-size: 10em;
}
.fof-sub a {
    text-decoration: underline;
    color: #000;
    
}
.fof-sub-link {
    /* margin-top: 10em; */
}


a {
    color: rgba(51,51,51, .8);
}