body {
    font-family: 'Lexend Deka', sans-serif;
    margin: 0;
}

.wrapper {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: url(assets/bild.jpg) no-repeat fixed;
    background-size: cover;
    background-position: center;
}

.box {
    color: white;
    padding: 1rem;
    width: 100%;
    max-width: 60vw;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 2000px rgba(30, 30, 30, 1);
}

.profil {
    width: 200px;
    height: auto;
    border-radius: 50%;
    transition: box-shadow ease 0.5s;
}

.profil:hover {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow ease 0.5s;
}

.box h1 {
    margin: 0;
}

.box_social-media {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;

}

.social-media {
    width: 50px;
    height: 50px;
    transition: all ease-in-out 0.8s;
}

a {
    width: 50px;
    height: 50px;
    padding: 3px;
    display: inline-table;
}

a:hover .social-media {
    transform: rotate(360deg);
    transition: all ease-in-out 0.8s;
}


@media screen and (max-width: 768px) {
    .box {
        width: 250px;
    }
    .box_social-media {
        justify-content: center;
    }
    .social-media {
        padding: 5px;
    }
}
