*{
    padding: 0;
    margin:0 ;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "poppins",sans-serif;
}

.title-photo{
    background-color: #03045e;
    box-shadow: 1px 2px 5px black;
    margin-top: 10px;
    border-radius: 10px;
}

.button:hover{
    transform: translateY(-10px);
    box-shadow: 1px 2px 5px black;
}

footer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    height: 100px;
    background-color: rgb(46, 45, 45);
}

footer > .wrapper{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
}

footer > .wrapper > h5{
    color: #ffffff;
    cursor: pointer;
    transition: all 0.5s;
}

footer > .wrapper > .icon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 10%;
}

footer > .wrapper > .icon > a{
    box-shadow: none;
    border: none;
}

footer > .wrapper > .icon > a > i{
    font-size: 20px;
}

footer > .wrapper > .icon > a:first-child{
    color: #FFDC80;
    transition: all 0.5s;
}

footer > .wrapper > .icon > a:nth-child(2){
    color: black;
    transition: all 0.5s;
}

footer > .wrapper > .icon > a:nth-child(3){
    color: crimson;
    transition: all 0.5s;
}

footer > .wrapper > .icon > a:last-child{
    color: #03045e;
    transition: all 0.5s;
}

footer > .wrapper > .icon > a:first-child:hover{
    transform: translateY(-10px);
    text-shadow: 1px 2px 5px #FFDC80;
}

footer > .wrapper > .icon > a:nth-child(2):hover{
    transform: translateY(-10px);
    text-shadow: 1px 2px 5px black;
}

footer > .wrapper > .icon > a:nth-child(3):hover{
    transform: translateY(-10px);
    text-shadow: 1px 2px 5px crimson;
}

footer > .wrapper > .icon > a:last-child:hover{
    transform: translateY(-10px);
    text-shadow: 1px 2px 5px #03045e;
}

footer > .wrapper > h5:hover{
    color: yellow;
    transform: translateX(10px);
}