@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #202227;
    font-family: 'Poppins', sans-serif;
}
.container {
    text-align: center;
    width: 300px;
    margin: 30px auto;
}

img{
    width: 100%;
}

img.avatar{
    border-radius: 50%;
    height: 130px;
    width: 130px;
    padding: 3.7px;
    border: #2f62b9 solid 4px;
    transition: 0.5s;
}

img.avatar:hover{
    width: 150px;
    height: 150px;
    margin-bottom: -20px;
    border-radius: 30%;
}

h1{
    margin-top: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 32px;
    color: #00082f;
}

.username{
    font-weight: 300;
    opacity: .8;
    font-size: 18px;
}

ul{
    list-style: none;
    margin: 45px 0;
}

ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 53px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    background: #2f62b9;
    font-size: 14px;

    margin-bottom: 16px;
    border-radius: 6px;

    transition: .4s;
}

ul li a:hover{
    background: #254c90;
    letter-spacing: 2px;
}

h1, p, footer{
    color: white;
}

footer:hover{
    opacity: 1;
}

footer{
    font-size: 12px;
    opacity: 0.6;
    font-weight: 500;
}