body {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    background-color: #333;
    margin: clamp(2rem, 5vw, 4rem);
    margin-top: 0;
    padding: 0;
    user-select: none;
}
p {
    color: #666;
}
.nav-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.main-title{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
h1.title{
    color: #fff;
    font-size: clamp(2.6rem, 4.8vw, 4.8rem);
    line-height: 1;
    font-weight: 400;
    margin: clamp(2rem, 5vw, 4rem) 0;
}
h1.title .title-sub{
    color: #a5a5a5;
    font-size: clamp(1rem, 2vw, 2rem);;
}

@media (max-width: 460px) {
    .login-btn.top{
        display: none;
    }
    .login-btn.bottom{
        display: block;
        margin-top: 2rem;
    }
}
@media (min-width: 460px) {
    .login-btn.top{
        display: block;
    }
    .login-btn.bottom{
        display: none;
    }
}

.login-btn{
    border: 2px solid #a5a5a5;
    padding: 0.8rem 4rem;
    color: #333333;
    text-decoration: none;
    transition: all 0.5s ease-in-out;  
    position: relative; 
}
.login-btn span{
    color: #a5a5a5;
    font-weight: 600;
    text-transform: uppercase;
}
.login-btn .btn-bg{
    background-color: #a5a5a5;
    position: absolute; 
    z-index: -1;
    width: 0%;
    height: 100%;
    top: 0%;
    left: 0%;  
    transition: all 0.5s ease-in-out;  
}
.login-btn .btn-bg-mask{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.login-btn, .login-btn .btn-bg, .login-btn .btn-bg-mask{
    border-radius: 2rem;
}
.login-btn:hover span{
    color: #494949;
}
.login-btn:hover .btn-bg{
    width: 100%;
}
.main-wrap {
    height: calc(var(--vh) * 100);
    background: #494949;
    border-radius: 2vw;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.main-wrap-bg {
    position: absolute;
}
.fam-wrap{
    position: relative;
    height: 100%;
    overflow: hidden;
}
.fam-per{
    position: absolute;
    border-radius: 100%;
    cursor: pointer;
    border: 6px solid #a5a5a5;
}
.fam-per-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 100%;
}
.per-name.bottom {
    margin-top: 1rem;
    text-transform: uppercase;
    color: #a5a5a5;
}
.per-name.top {
    margin-top: -100%;
    transform: translateY(calc(-100% - 1rem));
    text-transform: uppercase;
    color: #a5a5a5;
}
@media (max-width: 460px) {
    .fam-per.--1 .per-name,
    .fam-per.--4 .per-name {
        font-size: 1rem;
    }
    .fam-per.--2 .per-name,
    .fam-per.--3 .per-name {
        font-size: 1.4rem;
    }
}
@media (min-width: 460px) {
    .fam-per.--1 .per-name,
    .fam-per.--4 .per-name {
        font-size: 1.8rem;
    }
    .fam-per.--2 .per-name,
    .fam-per.--3 .per-name {
        font-size: 2.6rem;
    }
}
.--1{
    bottom: clamp(4vw, 4vw, 4vw);
    left: clamp(4vw, 4vw, 4vw);
    height: clamp(12rem, 16vw, 16rem);
    width: clamp(12rem, 16vw, 16rem);
}
.--2{
    bottom: clamp(42vw, 42vw, 42vw);
    left: clamp(4vw, 4vw, 4vw);
    height: clamp(16rem, 22vw, 22rem);
    width: clamp(16rem, 22vw, 22rem);
}
.--3{
    bottom: 27vw;
    right: 2vw;
    height: clamp(16rem, 22vw, 22rem);
    width: clamp(16rem, 22vw, 22rem);
}
.--4{
    top: 4vw;
    right: 4vw;
    height: clamp(12rem, 16vw, 16rem);
    width: clamp(12rem, 16vw, 16rem);
}
.per-bg{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease-in-out;
    border-radius: 100%;   
}
.per-bg:hover{
    transform: scale(1.2); /* Vergrößert das gesamte Element */
}
.--noah{
    background-image: url(../img/noah.jpg);
}
.--luca{
    background-image: url(../img/luca.jpg);
}
.--marco{
    background-image: url(../img/marco.jpg);
}
.--kerstin{
    background-image: url(../img/kerstin.jpg);
}