* {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

header{
    border-radius: 0;
    background-color: rgba(14, 14, 14, 0.845);
}
.headercontent{
    
    background-color: #000000;
    height: 150px;
    display: flex;
    align-items: center;
    font-size: 1.5em;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 0 20px;
}
a{

    text-decoration: none;
    font-size: 1.2em;
    transition: all ease 0.3s;
}
a:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.navbar{
    margin-left: auto;
    display: flex;
    gap: 30px;
}
.content{
    background-color: rgba(0, 0, 0, 0.845);
    height: calc(100vh - 150px);
    padding: 0 30px;
    display: flex;
    
}
.profile_template{
    position: relative;
    transition: all ease 0.5s;
    border: solid gray 3px;
    border-radius: 20px;
    height: 250px;
    width: 500px;
    display: flex;
    flex-direction: column;
    top: 30px;
    padding: 10px;
    overflow: hidden;
}
.profile_template img{
    border-radius: 50%;
    
}
.profile_template h2{
    position: relative;
    margin-left: 50%;
    bottom: 100px;
    font-size: xx-large;
}
.profile_template p{
    font-size: larger;
    height: 100%;
    position: relative;
    bottom: 10px;
}
.profile_template:hover{
    cursor: pointer;

}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    opacity: 0; /* transparenter "Film" */
    pointer-events: none; /* Damit Klicks durchgehen */
    z-index: 1;
    transition: all ease 0.5s;
  }
  .content{
    gap: 20px;
  }
















































