.ss-container {
    display: flex;
    justify-content: center;
}

.buttonLinksContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
    max-width: 80%;
}

.button,
.button:hover,
.button:active
  {
    border-radius: 6px;
    border-color: transparent;
    margin: 11px 7px;
    font-family: Arial;
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    text-align: center;
    height: 48px;
}

.buttonLinksContainer .blueButton {
    background-color: #03234b;
    color: #fff;
}

.buttonLinksContainer .blueButton:hover {
    background-color: #042e62;
    color: #fff;
    border-color: #042e62;
}

.buttonLinksContainer .blueButton:active .blueButton:focus {
    background-color: #021b3b;
    color: #fff;
    border-color: #021b3b;
    background: #021b3b;
}

.buttonLinksContainer .yellowButton {
    background-color: #ffd200;
    color: #03234b;
}

.buttonLinksContainer .yellowButton:hover {
    background-color: #ffdb33;
    border-color: #ffdb33;
    color: #03234b;
}

.buttonLinksContainer .yellowButton:active .yellowButton:focus {
    background-color: #f5ca00;
    color: #03234b;
    border-color: #f5ca00;
    background: #f5ca00;
}

.buttonLinksContainer .greyButton {
    background-color: #dbdee2;
    color: #525a63;
}

.buttonLinksContainer .greyButton:hover {
    background-color: #f7f8fa;
    border-color: #f7f8fa;
    color: #525a63;
}

.buttonLinksContainer .greyButton:active .greyButton:focus {
    background-color: #dbdee2;
    color: #525a63;
    border-color: #dbdee2;
    background: #dbdee2;
}

.buttonLinksContainer img {
    margin-right: 10px;
    height: 20px;
}

.buttonLinksContainer .link {
    vertical-align: bottom;
}

/* button end */

.devzone-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.devzone-content {
    display: block;
    text-align: center;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 70%;
}

@media only screen and (max-width: 600px) {
    .devzone-content {
        max-width: 100%;
    }
  }

@media only screen and (min-width: 64.063em) {
    .stm32-logo {
        float: left;
    }
  }

.dark-text {
    color: #03234b;
}

.title-h {
    font: 120px / 1.4 LubalinGraphStd-Medium, Arial, Helvetica, sans-serif;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 36px;
}

.title-p {
    font: 24px / 1.4 LubalinGraphStd-Medium, Arial, Helvetica, sans-serif;
    font-size: 21px;
}

.mcu-banner {
    display: flex;
    flex-wrap: wrap;
    background: #03234b;
    padding: 10px;
    gap: 50px;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 25px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.mcu-text {
    color: #fff;
    text-align: left;
    width: 500px;
}

.ss-button-yellow {
    height: 48px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #ffd200;
    color: #03234b;
    border-radius: 10px 0 10px 0;
}
 
.ss-button-yellow:hover {
    background-color: #ffdb33;
}
 
.ss-button-yellow:active {
    background-color: #f5ca00;
}

.ss-button-yellow img {
    height: 40px;
}

@media only screen and (max-width: 600px) {
    .mcu-banner {
        gap: 10px;
    }
    .mcu-text {
        width: unset;
    }
  }

   /* Foto visibile su schermi più grandi di tablet (superiori a 768px) */
.picture-big {

    display: none;
  }
  
  /* Foto visibile su schermi da tablet in giù (fino a 768px) */
  .picture-small {
    display: block;
  }
  
  /* Media query per schermi superiori a 768px (tablet in su) */
  @media (min-width: 769px) {
    .picture-big {
      display: block;
    }
    .picture-small {
      display: none;
    }
  }