/* Body */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #070911;
    color: white;
}

img {
    width: 100px;
    border-radius: 50px;
}

/* Division */
body>div {
    min-width: 300px;
}

/* Division */
.links div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links div a {
    display: flex;
    justify-content: center;
    background-color: #070911;
    align-self: stretch;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-style: solid;
    border-color: #3c81ff;
    border-width: 2px;
    border-radius: 50px;
}

a {
    font-size: 18px;
    text-decoration: none;
    color: white;

}

i {
    font-size: x-large;
}

.link {
    filter: drop-shadow(11px 10px 0px #3c81ff);
    margin-bottom: 20px;
    margin-top: 20px;
    transition: all 0.1s ease-out;

}

.link:hover {
    filter: drop-shadow(5px 5px 0px #3c81ff);
    transform: translate(6px, 5px);
    transition: all 0.1s ease-out;
}

.link:active {
    filter: drop-shadow(1px 1px 0px #3c81ff);
    transform: translate(10px, 9px);
    transition: all 0.1s ease-out;
}
