* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: Montserrat, sans-serif;
    background: #1b1c1f;
    margin: 0;
  }
  header {
    position: fixed;
    width: 100%;
    border-radius: 4px;
    background-color: #151517;
  }
  header .Logo {
    margin: 0;
    padding: 17px 25px;
    font-weight: bold;
    color: white;
    font-size: 1.9em;
  }
  header .Content {
    display: flex;
    align-items: center;
  }
  header nav {
    flex-direction: column;
    text-align: center;
  }
  header a {
    padding: 5px 13px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    color: #90ffda;
    transition: all 0.5s ease-in-out;
  }
  header a:hover {
    color: white;
    transition: all 0.5s ease-in-out;
  }
  footer {
    background-color: #1b1c1f;
  }
  footer p {
    margin: 0;
    margin-right: 2px;
    padding: 12px;
    color: #717171;
  }
  footer .Content {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  button {
    font-size: 1.25em;
    font-weight: bold;
    padding: 5px 110px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 1px 0px 5px rgba(0, 0, 0, 1);
    color: #ffffff;
    background-color: #00fca8;
    transition: all 0.5s ease-in-out;
  }
  button:hover {
    background-color: #00b87a;
    transition: all 0.5s ease-in-out;
  }
  #Text button {
    font-size: 1.75em;
  }
  .Content {
    max-width: 1400px;
    margin: auto;
  }
  #TextImg {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 23px;
    flex-direction: column;
    height: 15vh;
    font-size: 32px;
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.6)
      ),
      url("https://cdn.glitch.global/af7d12cd-1df5-4d00-af26-9b7823ced211/Code.jpg?v=1670370532618");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  #TextImg h1 {
    color: white;
  }
  #Text2Img {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 23px;
    flex-direction: column;
    height: 15vh;
    font-size: 30px;
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      url("https://cdn.glitch.global/af7d12cd-1df5-4d00-af26-9b7823ced211/XSP.jpg?v=1670370525285");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  #Text2Img h1 {
    color: white;
  }
  #Text .Content {
    text-align: center;
    padding: 45px 12px;
    font-size: 17px;
    font-weight: bold;
  }
  #Text .Content .Write {
    color: white;
  }
  #Servers {
    background-color: #1b1c1f;
    color: white;
    text-align: center;
  }
  #Servers .Content {
    padding: 40px 15px;
  }
  #Servers h2 {
    margin-top: 0;
    font-size: 3em;
  }
  #Servers p {
    font-weight: bold;
    font-size: 20px;
  }
  #Servers .TextCard {
    font-size: 40px;
  }
  #Servers .Card {
    background-position: center center;
    background-size: cover;
    padding: 30px 0px;
    margin: 20px;
    border-radius: 15px;
  }
  .Card:first-child {
    background-color: #303030;
  }
  .Card:nth-child(2) {
    background-color: #303030;
  }
  #Sobre-mi .Content {
    text-align: center;
    padding: 45px 12px;
  }
  #Sobre-mi .Text {
    font-size: 35px;
    color: white;
    text-align: center;
  }
  #Sobre-mi .Content .Write {
    color: white;
    font-size: 20px;
  }
  @media (min-width: 850px) {
    header .Content {
      font-size: 25px;
      flex-direction: row;
      justify-content: space-between;
    }
    header nav {
      flex-direction: row;
      padding-bottom: 0;
      padding-right: 20px;
    }
    header a {
      font-size: 30px;
    }
    #TextImg h1 {
      font-size: 2.5em;
    }
    #Text2Img h1 {
      font-size: 2.5em;
    }
    #Text .Write {
      font-size: 25px;
    }
    #Servers .Server {
      display: flex;
      justify-content: center;
    }
    #Servers p {
      display: block;
      margin-bottom: 30px;
    }
    #Servers h2 {
      font-size: 4em;
    }
    #Servers h3 {
      margin-top: 0;
    }
    #Servers .Card {
      padding: 40px;
      background-size: 100% 150px;
      background-repeat: no-repeat;
      background-position-y: 0;
      background-color: rgba(50, 50, 50, 1);
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }
    .Card:first-child {
      background-color: #303030;
    }
    .Card:nth-child(2) {
      background-color: #303030;
    }
    footer .Content {
      justify-content: flex-end;
    }
    button {
      padding: 10px 130px;
    }
    #Sobre-mi .Text {
      font-size: 55px;
      color: white;
      text-align: center;
    }
    #Sobre-mi .Content .Write {
      color: white;
      font-size: 30px;
    }

}