
@charset "utf-8";

body {
    background-repeat: repeat-x;
    background-image: url("fancy-cushion.webp");
    background-color: goldenrod;
    margin: 0;
    font-family: sans-serif;
  }

  #contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
  }

  #superior {
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  #perfil {
    flex: 1;
    display: flex;
    justify-content: flex-start;
  }

  #perfil img {
    width: 242px;
    height: 242px;
  }

  #info {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  h1 {
    margin: 0;
    color: white;
    font-family: "Road Rage", sans-serif;
    font-weight: 400;
    font-size: 47px;
  }

  h2 {
    margin: 0;
    color: white;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }

  h4{
    margin: 0;
    color: white;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
  }

  #redes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }

  .ico {
    padding: 5px;
  }

  #trabajos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
