body, html {
    background-color: rgb(16,16,18);
    font-family: sans-serif;
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

img{
    max-width: 70%;
    max-height: 70%;
}

.socials{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .social{
    padding: 12px;
    font-size: 25px;
    border-radius:50%;
    transition:0.4s ease-in-out;
  }
  .social:hover { 
    cursor: pointer;
    color:rgb(255, 255, 255);
    transform: translateY(-1px);
  }

  a{
    text-decoration: none;
    color: gray;
  }