.raleway {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
body {
    text-align: center;
    background:url('https://ytk.at/css/bg.png?v=1.1') center center;
    margin: 0;
    padding: 0;
    font-family: "Raleway";
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
h1, h2, h3{
    color:#FFF;
    line-height: 1em;
}
h3{
    font-size:1.1em;
    font-weight:300;
    line-height:0em;
}
.container {
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
}
.profile {
    margin-bottom: 20px;
}
.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border:3px solid #FFF;
}
.personal{
    display: inline-block !important;
}
.links a {
    display: block;
    background: #FFF;
    color: #000;
    text-decoration: none;
    padding: 20px;
    margin: 10px 0;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
    font-size: 16px;
}
.links a:hover {
    background: #FFF;
    transform: scale(1.05);
}
@media (max-width: 480px) {
    .container {
        margin: 5px auto;
        padding: 15px;
    }
    .links a {
        font-size: 14px;
        padding: 12px;
    }
}