body {
  height: 100vh;
  font-family: 'Open Sans', sans-serif;
}

.top-text {
    padding-top: 28.2vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.body-container {
  height: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.wrapper {
  width: 50%;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.top-text p {
  font-size: 80px;
  font-family: 'Roboto', sans-serif;
}

.fixed-wrapper {
    position: fixed;
    right: 50%;
    top: calc(50% - 135px);
}

ul li a {
  color: #808080;
}

.text-title {
  margin: 0;
  color:white;
}

.title-logo {
    fill: #FFFFFF;
    height: 24px;
    width: 24px;
    margin: 0 12px 0 2px;
    opacity: 0.6;
}

.title-logo:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mobile-view {
  display: none;
}

.desktop-view {
    display: block;
}

.text-content {
  color:white;
  margin-top: 5px;
  margin-bottom:5px;
  padding-left:5px
}

.middle-text {
  margin-top:5vh;
  border-radius: 10px;
  margin-right:10px
}

@media only screen and (max-width: 1094px) {
  .container-fluid {
    flex-direction: column;
  }
  .wrapper {
    width: 100%;
  }
  .mobile-view {
    display: block;
  }
  .desktop-view {
    display: none;
  }
  .wrapper.fixed-wrapper {
    justify-content: center;
    align-items: center;
    right: 0;
    display: none;
  }
  .scroll-wrapper {
    align-items: center;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top-text {
    padding-top: 15vh;
  }
  .title-logo {
    opacity: 1;
  }
  #terminal {
    width: 100%;
  }
  .top-text p {
    font-size: 70px;
  }
  .middle-text {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media only screen and (max-width: 600px) {
  #terminal .terminal .window-title .win-buttons {
    width: 60px;
  }
  #terminal .terminal {
    height: 400px;
  }
  .top-text p {
    font-size: 40px;
  }
  .middle-text {
    margin-right: 10px;
    margin-left: 10px;
  }
}

.background {
  background-image: url('../images/home-background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

#terminal #terminal-container .overlay {
  position: absolute;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.3;
}

#terminal .terminal {
  position: relative;
  background: rgba(38, 38, 38, 0.8);
  width: 80%;
  height: 260px;
  border-radius: 8px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  margin: auto;
}

#terminal .terminal .window-title {
  background: linear-gradient(to bottom, #dedede, #c0c0c0);
  width: calc(100% - 16px);
  height: 8%;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 1px 8px;
}

#terminal .terminal .title {
  position: relative;
  display: inline-block;
  color: black;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  vertical-align: middle;
}


#terminal .terminal .user {
  color: #ea7e7d;
}

#terminal .terminal .at {
  color: #e8d880;
}

#terminal .terminal .path {
  color: #7ecdcb;
}

#terminal .terminal .caret {
  color: #50cd70;
}

#terminal .message {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Source Code Pro", monospace;
  width: 95%;
  margin: auto;
  padding: 1.5vh 0 0;
  z-index: 999;
}

#terminal .message span a {
  font-family: "Source Code Pro", monospace;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
}

#terminal .message .typed-cursor {
  color: rgba(255, 255, 255, 0.9);
}

#terminal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

#terminal a:hover {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.9);
}

