 @import url('https://fonts.googleapis.com/css2?family=Signika+Negative&display=swap'); 
 @import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap'); 

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;
}

.container h1{
    text-align: center;
    margin-top: 60px;
    font-family: 'Montserrat', sans-serif;
}

.container h1 span{
   font-size: 15px;
   color: #ffb140;
}

h1{
  color: white;
 
}


 .box{
  
width: 85%;
height: 70px;
background-color: #FCFAFA;
border: solid 5px yellow;
}

.box:hover{
    cursor: pointer;
    background-color: yellow;
    color: black;
}

.box p{
text-align: center;
margin-top: 20px;
font-family: 'Carter One', sans-serif;
font-size: 25px;
    
}

footer p{
  color: white;
}

.boxContainer{
    margin-top: 50px;
    display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 20px;
}

.wrapper{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.wrapper .button{
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 0 5px;
    overflow: hidden;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease-out;
  }
  .wrapper .button:hover{
    width: 200px;
  }
  .wrapper .button .icon{
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 60px;
    transition: all 0.3s ease-out;
  }
  .wrapper .button:nth-child(1):hover .icon{
    background: #4267B2;
  }
  .wrapper .button:nth-child(2):hover .icon{
    background: #1DA1F2;
  }
  .wrapper .button:nth-child(3):hover .icon{
    background: #E1306C;
  }
  .wrapper .button:nth-child(4):hover .icon{
    background: red;
  }
  .wrapper .button:nth-child(5):hover .icon{
    background: #ff0000;
  }
  .wrapper .button .icon i{
    font-size: 25px;
    line-height: 60px;
    transition: all 0.3s ease-out;
  }
  .wrapper .button:hover .icon i{
    color: #fff;
  }
  .wrapper .button span{
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    margin-left: 10px;
    transition: all 0.3s ease-out;
    font-family: 'Carter One', sans-serif;
  }
  .wrapper .button:nth-child(1) span{
    color: #4267B2;
  }
  .wrapper .button:nth-child(2) span{
    color: #1DA1F2;
  }
  .wrapper .button:nth-child(3) span{
    color: #E1306C;
  }
  .wrapper .button:nth-child(4) span{
    color: #333;
  }
  .wrapper .button:nth-child(5) span{
    color: #ff0000;
  }

  footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer img{
    width: 100px;
    margin-bottom: 15px;
  }
  footer p{
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Permanent Marker', cursive;
    font-family: 'Montserrat', sans-serif;
  }