@media (max-aspect-ratio: 12/9) {
  body {
    background: linear-gradient(
      45deg,
      rgba(107, 107, 107, 1) 0%,
      rgba(197, 197, 197, 1) 100%
    );
  }
  .container {
    min-height: 100vh;
    display: flex;
    /* Make a horizontal flexbox (the default) */
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header_container {
    padding-bottom: 20px;
  }
  .header {
    font-family: "Caveat", Calibri, Tahoma, sans-serif;
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .subheader {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .subsubheader {
    font-size: 1.2rem;
  }
}
@media (min-aspect-ratio: 12/9) {
  body {
    background-image: url("../img/bg_johanadell.jpg");
    background-size: cover; /* <------ */
    background-repeat: no-repeat;
    background-position: top right;
  }
  .container {
    min-height: 100vh;
    display: flex;
    /* Make a horizontal flexbox (the default) */
    flex-direction: row;
    align-items: right;
  }
  .avatar {
    visibility: hidden;
    width: 0px;
  }

  .header_container {
    margin-top: auto;
    padding-bottom: 10%;
    padding-left: 10%;
  }
  .header {
    font-family: "Caveat", Calibri, Tahoma, sans-serif;
    font-size: 8vw;
    margin-bottom: 20px;
  }
  .subheader {
    font-size: 3vw;
    margin-bottom: 10px;
  }
  .subsubheader {
    font-size: 1.5vw;
  }
}

.img_avatar {
  width: 60vw;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  border-
}
