html,
body {
  background-color: white;
}

header {
    margin-top: 2em;
    margin-left: 2em;
    color: rgb(17, 17, 17);
    text-orientation: mixed;
    display: flex;
    flex-direction: column;
    justify-content: left;
    position: fixed;
    gap: 10px;
}

.mixedmedia {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding-top: 7em;
  padding-left: 3em;
  padding-right: 2em;
}

.gridbox {
  max-width: 1420px;
  display: grid;
  grid-template-columns: 350px 1050px;
  row-gap: 60px;
  column-gap: 20px ;
  margin-bottom: 200px;
}
  
  
.gridbox img {
  max-width: 100%;
  object-fit: cover;
}

.gridbox iframe {
  max-width: 100%;
  object-fit: fill;
}

.gridbox p {
  line-height: 1.25;
  font-size: 0.9em;
  overflow-wrap: break-word;
  text-align: justify;
  object-fit: cover;
}



.footer {
    background-color: transparent;
    position: relative;
    bottom: 0;
    width: 100%;
    padding-bottom: 0rem;
  }
  
  .footer .socials  {
    text-align: center;
    padding-bottom: 25px;
    font-size:13px;
    text-align: center;
    line-height: 1.5;
  }

  .footer .email  {
    text-align: center;
    font-size:13px;
    text-align: center;
    line-height: 1.6;
  }
  
  .footer .rights  {
    text-align: center;
    padding-bottom: 25px;
    font-size:13px;
    text-align: center;
  }
  

@media screen and (max-width: 1350px) {
  .gridbox {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 200px;
  }

  .gridbox img {
    max-width: 100%;
    object-fit: cover;
  }

  .gridbox iframe {
    max-width: 100%;
    object-fit: cover;
  }

  .footer {
    position: relative;
    bottom: 0;
    width: 100%;
  }
}