@import url('https://fonts.googleapis.com/css?family=Sofia');

*{
    margin: 0;
    padding: 0;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efeeee;
    /* background-image: url("https://pic.littletiger.org/images/2022/07/27/IMG_3024.jpg"); 
    background-size: contain; */
    padding-top: 60px;
}

.header {
    position: fixed; /* Make the header stay at the top while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Set the height of the header */
    display: flex;
    align-items: center;
    padding-left: 20px; /* Add some padding to the left of the header */
    background-color: #efeeee;
    z-index: 100; /* Make sure the header stays on top of other elements */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 40px; /* Adjust the logo size */
    margin-right: 10px; /* Add some space between the logo and the text */
}

.logo span {
    color: orange;
    font-size: 24px; /* Change the font size to your desired value */
    font-weight: 700; /* Change the font weight to your desired value */
    font-style: italic; /* Change the font style to your desired value, e.g., italic or normal */
    font-family: 'Sofia', sans-serif; /* Change the font family to the desired font */
  }


.container{
    width: 700px;
    height: 600px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}
.container .box{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 100px;
    height: 140px;
    margin: 20px;
}
.container .box .img{
    width: 100px;
    height: 100px;
    box-shadow: 18px 18px 30px rgba(0, 0, 0, 0.1),
    -18px -18px 30px rgba(255, 255, 255, 1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #efeeee;
    transition: box-shadow .2s ease-out;
    position: relative;
}

.container .box .img  img{
    width: 60px;
    transition: width 0.2s ease-out;
}
.container .box p{
    color: slategrey;
}
.container .box .img:hover{
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px rgba(255, 255, 255, 0.8),
    inset 18px 18px 30px rgba(0, 0, 0, 0.1),
    inset -18px -18px 30px rgba(255, 255, 255, 1);
    transition: box-shadow .2s ease-out;
}
.container .box .img:hover img{
    width: 58px;
    transition: width 0.2s ease-out;
}