@font-face {
    font-family: 'Roboto'; /* Name der Schriftart */
    src: url('https://link.baum.ronnyjaeger.ch/Schrift/Roboto-Regular.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Helvetica, Arial sans-serif;
    font-weight:bold;
    letter-spacing: .12rem;
    text-transform: uppercase;
}
    
body {
    background-color: #232323;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.container {
    background-color: #ffffff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile h1 {
    font-size: 18px;
    margin-bottom: 1px;
}

.profile p {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
}

.links a {
    display: block;
    background-color:#ffffff;
    border: 2px solid #ff00d4;
    color:black;
    padding: 10px;
    margin: 2.5px 0;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 1.0s;
}

.links a:hover {
    background-color: #ff00d4;
    color:#ffffff;
}
