.content {
    margin: 0 auto;
    max-width: 900px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    font-family: "Jost", Arial, sans-serif;
    
}

@media screen and (min-width: 700px) {
    .content {
        flex-direction: column;
        gap: 20px;
    }
    .profile {
        order: 3;
    }
    
}

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    & img {
        width: 100px;
        height: 100px;
        ;
    }
}

section {
    width: 100%;
}

img {
    width: 100%;
    height: auto;
}

p {
    font-size: 1.3em;
    text-align: justify;
    padding: 10px;
}

h1,h2,h3 { 
    text-align: center;
}

.layout-hobbies {
    width: 100%;
    display: block;
    gap: 3px;
}


.profile p {
    background-color: yellow;

}

.profile ol {
    list-style: none;
    font-size: 1.1em;
}

.webs a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: orange;
    padding: 10px;
    margin: 10px;
    font-size: 1.5em;
}



/* From Uiverse.io by david-mohseni */ 
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrapper a:any-link {
    text-decoration: none;
    color: inherit;
  }

  .wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .wrapper .icon:hover span,
  .wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper .twitter:hover,
  .wrapper .twitter:hover .tooltip,
  .wrapper .twitter:hover .tooltip::before {
    background: #1da1f2;
    color: #fff;
  }
  
  .wrapper .instagram:hover,
  .wrapper .instagram:hover .tooltip,
  .wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
  }
  