*{
    font-family: "Noto Sans", sans-serif;
}
h1 {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* x-offset, y-offset, blur, color */
  }
body{
    padding: 0;
    margin: 0;
    background-image: linear-gradient(rgb(53, 3, 255) , rgb(0, 255, 229));
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center center; 
    background-attachment: fixed;
    
}
div{
    border-radius:10px ;
}
.mainbox{
   
   
   
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;

}
#box1{
    width: 60px;
    height: 60px;
    background-color: brown;
    border: black solid 5px;
    transition: all 0.5s ease-out;
    color:white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#box1:hover{
    background-color: rgb(254, 108, 108);
    transform: rotate(45deg);
    transition: all 0.5s ease-in;
    cursor: pointer;
    
}
#bximg1{
    width: 60px;
    height: 60px;

}
#box2{
    width: 60px;
    height: 60px;
    background-color: rgb(42, 165, 104);
    border: black solid 5px;
    color:white;
    transition: all 0.5s ease-out;
    cursor: pointer;
 
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#box2:hover{
    background-color: greenyellow;
    transform: rotate(45deg);
    transition: all 0.5s ease-in;
}
#bximg2{
    width: 60px;
    height: 60px;
    background-color: green;

}
#box3{
    width: 60px;
    height: 60px;
    background-color: rgb(95, 42, 165);
    border: black solid 5px;
    color:white;
    transition: all 0.5s ease-out;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#box3:hover{
    background-color: rgb(47, 213, 255);
    transform: rotate(-45deg);
    transition: all 0.5s ease-in;
    cursor: pointer;
}
#bximg3{
    width: 60px;
    height: 60px;
    background-color: blueviolet;

}
#box4{
    width: 60px;
    height: 60px;
    background-color: rgb(206, 85, 85);
    border: black solid 5px;
    color:white;
    transition: all 0.5s ease-out;
}
#box4:hover{
    background-color: rgb(255, 134, 47);
    transform: rotate(45deg);
    transition: all 0.5s ease-in;
}
#box5{
    width: 60px;
    height: 60px;
    background-color: rgb(147, 165, 42);
    border: black solid 5px;
    transition: all 0.5s ease-out;
    color:white;
}

#box5:hover{
    background-color: greenyellow;
    transform: rotate(-45deg);
    transition: all 0.5s ease-in;
}
#pl{
    background-image: linear-gradient(yellow, orange);
    border: black solid 5px;
    border-radius: 10px;
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 500px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#ph{
    margin-left: 40px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    
}
.showcase-container{
   
    width: 100%;
    height: auto;
    max-height: 100%;
    margin-top: 50px;
   
    display: inline-flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
img{
    margin-top: 15px;
    margin-left: 15px;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 220px;
    border-radius: 10px;
    border: black solid 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
   
}
#shownum1{
    transition: all 0.5s ease-out;
    
}
#shownum1:hover{
    transition: all 0.5s ease-out;
    transform: rotate(10deg);
 
    cursor: pointer;

}
#shownum2{
    transition: all 0.5s ease-out;
}
#shownum2:hover{
    transition: all 0.5s ease-out;
    transform: rotate(10deg);
    
    cursor: pointer;

}
#shownum3{
    transition: all 0.5s ease-out;
}
#shownum3:hover{
    transition: all 0.5s ease-out;
    transform: rotate(10deg);
    
    cursor: pointer;

}
p{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
#showimg1{
    transition: all 0.5s ease-out;

}
#showimg1:hover{
    transition: all 0.5s ease-out;
    transform: rotate(10deg);
    
    cursor: pointer;

}
