body{
    background-image: url("");
}


@import url('https://fonts.googleeopis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400&display=swap');


/*COMMONS*/
body {
    font-family: Montserrat;
    font-size: 16px;
}
h1{
    font-size: 28px;
}
a{ 
    text-decoration: none;
    }
section,
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: auto;
    margin-bottom: 20px;
}

/*HEADER*/
section.header img {
    max-width: 180px;
    border-radius: 50%;
}

/*LINKS*/
section.links .link-item {
    width: 100%;
    margin-bottom: 16px;
}
section.links .link-item a{
    display: block;
    width: 100%;
    border: 1px #000000 solid;
    padding: 16px;
    text-align: center;
    color: #000000;
    border-radius: 180px;
    box-shadow: 4px 4px rgb(0, 0, 0);
    background-color: #e2d7a7;
}
section.links  .link-item a:hover {
    animation: shake 8.5s infinite;
}
@keyframes shake {
    0% {
    transform: translateX(-5px);
    }
    25% {
    transform: translateX(5px);
    }
    50% {
    transform: translateX(-5px);
    }  
    75% {
    transform: translateX(5px);
    }
    100% {
    transform: translateX(0);
}
}
/*FOOTER */
footer a{
    color: rgba(0, 0, 0, 0.5);
}