.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

  h1,h2,p,li {
    font-family: 'Roboto', sans-serif;
  }

  h1 {
    font-size: 30px;
    font-weight: 700;
    color: #00450e;
  }

  h2 {
    font-size: 25px;
    font-weight: 700;
    color: #00450e;
  }

  p, li {
    font-size: 1rem;
    font-weight: 300;
  }
  
  body {
    margin: 0px;
  }

  header {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 20px;
    align-items: center;
  }

  nav ul {
    display: flex;
    justify-content: end;
  }

  nav ul li{
    list-style: none;
    padding-right: 20px;
  }

  nav ul li a {
    text-decoration: none;
  }

a:visited {
    color: black;
}

aside {
    padding-left: 1rem;
}
.container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2%;
    padding: 2%;
    align-items: baseline;
}

.main-image {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 1rem;
}

.main-image img {
    width: -webkit-fill-available; 
}

.main-image div {
    background-color: #00450e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image p, footer p {
    color: white;
}

article {
    margin: 2rem;
}

article ol {
    margin: auto 0px 20px;
}

footer{
    width: 100%;
    min-height: 12rem;
    background: url(../img/fresas.webp);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    font-weight: 700;
    font-size: 18px;
}

