* {
    padding: 0;
    margin: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}
body {
    background-image: url(static/bg.jpg);
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    justify-content: center;
    text-align: center;
}
.avatar{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-image: url(static/avatar.jpg);
    background-repeat: no-repeat;
    background-size: 115%;
    background-position: 1% 11%;
    display: inline-flex;
 }
.desc{
    margin: 10px 0;
}
.desc>p {
    font-size: 28px;
    font-weight: 600;
    padding: 6px 0;
    text-transform: uppercase;
}
.desc-add {
    margin-bottom: 30px;
    font-size: 19px;
}
a {
    color: #ffffff;
}
ul {
    display: flex;
    font-weight: 400;
    justify-content: center;
    flex-direction: column;
}
li {
    list-style: none;
    float: left;
    margin-bottom: 22px;
    background: rgb(0 0 0 / 50%);
    border-radius: 20px;
    padding: 12px 20px;
    transition: transform .2s;
}
li:hover{
    transform: scale(1.06);
    transition: all .2s ease-in-out;
}
li>a {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}

@media (max-width: 560px) {
    body {
        background-position: 9%;
    }
  }