*{
    background-color: rgb(64, 59, 59);
    color: rgb(253, 255, 246);
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 20px;
}

h1{
    color: rgb(243, 202, 202);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

article{
    color: rgb(204, 255, 208);
    font-family:fantasy;
    text-shadow: 25cm;
}

b{
    color: rgb(243, 229, 163);
    text-transform: uppercase;
}

img{
    margin-top: 20px;
    height: 25px;
    width: 25px;
}

footer{
    text-align: center;
    
}

big{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(255, 171, 171);
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 40px;          /* space between icons */
    margin-top: 20px;
  }
  
  .contact-icons img {
    width: 50px;        /* make all icons same size */
    height: auto;
    transition: transform 0.2s;
    cursor: pointer;
  }
  
  .contact-icons img:hover {
    transform: scale(1.2); /* little zoom effect */
  }
  