iframe {
  width: 100vw;
  aspect-ratio: 16 / 9;
  max-width: 80%;
  height: auto;
  border: 0;
}

#social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.social-icon img{
    width: 30px;
    height: auto;
}

.social-icon:hover {
    filter: brightness(0.8);
}