 @import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Noto Sans TC', sans-serif;
  
    background: #060606;
    background: -webkit-linear-gradient(bottom right, #060606, #058AC4);
    background: -moz-linear-gradient(bottom right, #060606, #058AC4);
    background: linear-gradient(to top left, #060606, #058AC4);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.profile-picture {
    display: block;
    margin-top:5%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    height: auto;
    max-width: 150px;
    border-radius: 50%;
  }

.name {
    text-align: center;
    font-size: 1.8em;
  }

.function {
    text-align: center;
    font-size: 1.5em;
  }

.links {
    text-align: center;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid white;
    border-width: 2px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    font-weight: 400;
    font-size: 1.1em;
  }

.links-disabled {
    text-align: center;
    margin-top: 10px;
    padding: 15px;
    border: 1px solid white;
    border-width: 2px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100px;
    font-weight: 400;
    font-size: 1.1em;
    color: #000;
    background: #888;
  }


a {
    text-decoration: none;
    color: white;
    transition: color 0.5s; 
}


a:hover {
    color: #000;
    background: #fff;
}


.sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns a {
    color: #fff;
    padding: 0 20px;
}

.sns a:hover {
    background: inherit;
}
