@import url('fonts.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Annie Use Your Telescope';font-size: 18px;
    background: url('/css/img/4248613.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    width: 90%;
    margin: 20px auto;
    padding: 20px;
    background: rgba(10, 15, 36, 0.9);
    border-radius: 15px;
}

.profile, .activities {
    background: #182335;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.profile img {
    width: 100px;
    border-radius: 15px;
}

.profile h1, .activities h1 {
    font-size: 1.5em;
    margin: 10px 0;
}

.profile p {
    font-size: 1em;
    color: #A0A0A0;
}

.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-size: 1em;
}

.discord {
    background: #5865F2;
}

.activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.activity {
    flex: 1 1 calc(33.333% - 40px);
    background: #253151;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 10px;
}

.activity img {
    width: 50px;
    border-radius: 10px;
}

.activity h1 {
    margin-top: 10px;
    font-size: 1.2em;
}

.activity a {
    display: block;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
}

.instagram { background: #5b51d8; }
.tiktok { background: #ff0050; }
.snapchat { background: #fffc00; }
.twitch { background: #6441a5; }
.twitter { background: #1DA1F2; }
.spotify { background: #1db954; }
.github { background: #24292e; }
.steam { background: #2a475e; }
.cosplay { background: #be257f; }
.teamspak { background: #2580c3; }
.kitsu { background: #E75E45;}
.youtube { background: #FF0000; }
.gi { background: #cf6ceb; }

footer {
    background: #182335;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
}

footer a {
    text-decoration: none;
    color: #7289DA;
    margin-right: 10px;
}

footer i {
    color: red;
}

.button {
    background-color: #4CAF50; /* Grün */
    border: none;
    color: weiß;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049; /* Dunkleres Grün */
}