@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

::selection{
    background: transparent;
}
:root{ 
    --fnt-color :#ffffff;
    --bg-color :#ffffff;
    --brd-color :#818a9f;
    --cnt-color :#4278f7;
    --fnt2-color:#5159fc;
}

* {
    margin: 0;
    padding: 0;
}

body{
    font-family: "DM Sans", sans-serif;
    background: fixed var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    margin: 1.5rem;
    padding: 1.5rem 3rem;
    background: var(--cnt-color);
    border: 1px var(--brd-color);
    border-radius: 10px;
}

.links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    justify-content: center;
}
.links a {
    padding: 0.5rem 1.8rem;
    font-size: 16px;
    min-width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--fnt-color);
    border: 2px solid var(--fnt2-color);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;

}

.links a::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: var(--fnt2-color);
 transform: translateX(-100%);
 transition: all .3s;
 z-index: -1;
}

.links a:hover::before {
 transform: translateX(0);
}

.links svg{
    margin-right: 0.3rem;
}
.icons{
    margin-top: 2.1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.icons a{
    color: var(--fnt-color);
    transition: all 0.3s;
}

.icons a:hover{
    color: var(--fnt2-color);
}

.profile img{
    width: 5.5rem;
    border-radius: 50%;
    z-index:999;
}

.profile{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.profile span{
    position: absolute;
    width: 5.6rem;
    height: 5.6rem;
    background: var(--fnt-color);
    border-radius: 50%;
    z-index: 1;
}

.info {
    display: flex;
    color: var(--fnt-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.info h1{
    font-size: 1.5rem;
}
.info h3{
    font-size: 0.8rem;
}

.info p{
    font-size: 0.7rem;
    text-align: center;
}