html, body {
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    padding: 0px;
    margin: 0px;
  }
  
  main {
    height: auto;
    min-height: 100vh;
    padding: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .profile-pic {
    width: 10ch;
    height: 10ch;
    border-radius: 100%;
    border: 1ch;
    border-style: solid;
    margin-bottom: 2em;
    border-color: #ffffff;
  }
  
  .main-info {
    background-color: #000000;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4em;
    border-radius: 2em;
  }
  
  .info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .info .img-icon {
    width: 5em;
    height: 5em;
    padding: 0;
  }
  
  .site-title {
    color: #ffffff;
    text-align: center;
    font-size: 6ch;
  }
  
  .site-subtitle {
    color: #ffffff;
    text-align: center;
    font-style: italic;
    padding-top: 1ch;
    font-size: 3ch;
  }
  
  .sobre-mim {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em;
    height: auto;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    margin: 2em;
    border-radius: 2em;
  }
  
  .sobre-mim h1 {
    font-size: em;
    margin-bottom: 1em;
    font-size: 3em;
    width: 100%;
  }
  
  #sobre-mim {
    background-image: url('../assets/android-kotlin-lovers.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2em;
  }
  
  .sobre-mim p {
    white-space: pre-wrap;
    font-size: 2em;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.5em;
  }
  
  .sobre-mim img {
    max-width: 80%;
    border-radius: 2em;
  }
  
  @media (min-width: 1000px) {
    .main-info {
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      align-items: center;
    }
    .info {
      width: auto;
      margin: 2em;
    }
    .profile-pic {
      margin: 2em;
    }
  }
  
  @media (min-width: 600px) {
    .main-info {
      max-width: 50%;
    }
    .profile-pic {
      width: 25ch;
      height: 30ch;
    }
    .info .img-icon {
      width: 10em;
      height: 10em;
    }
    .site-title {
      font-size: 8ch;
    }
    .site-subtitle {
      font-size: 3ch;
    }
  }