/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

body {
    background-color: rgba(0, 0, 0, 0.864);
    font-family: sans-serif;
    font-weight: 600;
}

#userPhoto {
    width: 200px;
    height: 200px;
    display: block;
    margin: 10px auto;
    border-radius: 20%;
}

#userName {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#userName h1 {
    font-size: 2.5rem;
    font-weight:900;
    letter-spacing: 0.1rem;
    margin: 0 auto;
}

#userName p {
    font-weight: 300;
    margin-top: 5px;
    text-transform: none;
}

i.fa {
    margin-right: 0.3rem;
}

#links {
    max-width: 400px;
    width: auto;
    display: block;
    margin: 20px auto;
}

.link {
    display: block;
    background-color: rgba(66, 110, 255, 0.2);
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    border-radius: 10px;

    &.mym {
        background-color: #000000;
        border-color: #fff;
        border-style: solid;
        border-width: 1px;
    }

    &.of {
        background-color: #00AFF0;
    }

    &.mail {
        background-color: darkmagenta;
    }
}

.link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    border: none;

    &.mym {
        background-color: #161616;
        color: white;
        border-color: #fff;
        border-style: solid;
        border-width: 1px;
    }

    &.of {
        background-color: #00AFF0;
        color: white;
    }

    &.mail {
        background-color: rgb(103, 1, 103);
        color: white;
    }
}
