* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgb(185 152 185);
    font-family: Georgia, 'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    margin-block: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h3 {
    margin-bottom: 0;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;

    padding-inline: 5px;
    width: 100vw;
    margin-bottom: 45px;
}

.link-content {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.img-profile {
    border-radius: 100vh;
    height: 250px;
    width: 250px;
    object-fit: cover;
    object-position: 0 -5px;
    margin-bottom: 24px;
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 400px;
    min-height: 80px;
    border-radius: 8px;
    background-color: whitesmoke;
    cursor: pointer;
    box-shadow: 1px 1px 2px rgb(110, 110, 110);
    padding: 20px;
}

.btn-link img {
    height: 30px;
}

a {
    text-decoration: none;
    width: 100%;
}

@media (max-width: 550px) {
    .link-content {
        margin-inline: 5px;
        min-width: 90%;
    }
    .btn-link {
        flex-direction: column;
        width: 100%;
    }
}

.pampered-img {
    height: 40px !important;
}

.btn-link p {
    color: rgb(37, 37, 37);
    font-size: 18px;
    margin: 0;
}

.btn-link:hover {
    transition: all 0.2s ease-in-out;
    background-color: rgb(75, 75, 75);
}

.btn-link:hover p {
    color: whitesmoke;
}


.impressum{
    align-items: start;
    width: auto;
  
  margin: 10px;
}

.impressum p{
    text-wrap: wrap;
}

.imp-link{
    text-decoration: underline;
}

footer{
    margin-bottom: 20px;
}