@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
} 

#titol{
    display:block;
    width:500px;
    margin: 0 auto;
}

.alias{
    padding-right: 30px;
    font-family: 'Montserrat', serif;
    font-weight: bolder;
    font-size: 30px;
    min-width:200px;
}

.competidor,.problemes {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.problema {
    margin: 1em 0.5em;
    display: inline-block;
    position: relative;
    width: 90px;
    height: 90px;
    border-radius:45px;
    background:linear-gradient(top, #bbb, #eee);
    box-shadow:
      inset 0 -1px 10px #999,
      0 -1px 1px #aaa,
      0 2px 1px #fff
    ;
  }
  
  .round-content {
    display: block;
    cursor: pointer;
    backface-visibility:hidden;
    transition:transform 200ms ease-in;
    background:linear-gradient(top, #fff, #ddd);

    background-color: #fff;
    box-shadow:0 2px 7px #555;
    text-shadow:0 -1px 1px #111;
    position: absolute;
    text-align: center;
    color: #990000;
    font-size: 45px;
    line-height: 72px;
    margin: 9px;
    width: 72px;
    height: 72px;
    border-radius:36px;
  }

  .round-content:hover {
      background-color: #eee;
      color: green;
      transform:rotate(-10deg) scale(0.9);
  }

  .problemes img {
    width:80px;
    text-align: center;
  }

  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat',serif;
    font-weight: bolder;
    font-size: 30px;
  }