@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    color: white;
    background-color: #011140;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
header{
    margin-top:30px;
    display: inline;
}
header img{
    width: 120px;
    border-radius: 50%;
}
figure img{
    width: 50px; 
    border-radius: 50%;
    margin: 7px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.404);
}
figure img:hover{
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 10px rgb(0, 0, 0);
     transition: 0.5s;
}
figure{
    margin: 20px;
}
button{
    background-color: #F21905;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 100px;
    border: none;
}
.site{
    padding: 0 100px;
}
.portifolio{
    padding: 0 85px;
}
.e-mail{
    padding: 0 63px;
}
a{
    color: white;
    text-decoration: none;
    font-size: 15px;
}
p{
    margin: 15px;
}
h2{
    margin-bottom: 10px;
}