@font-face {
    font-family: "ReplicaProBold";
    src: url("fonts/ReplicaProBold.woff");
}

@font-face {
    font-family: "ReplicaProRegular";
    src: url("fonts/ReplicaProRegular.woff");
}

*{
    
    box-sizing: border-box;
    color: black;
}
body {
    overflow: hidden;
    margin: 0;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    
}

.platzhalter{
    background-color: rgb(255, 255, 255);
    width: 1600px;
    padding: 0;
    border: 0;
    margin: 0;
    height: 50px;
}

#stage{
    transform: translate(320px,-200px);
    background-color: rgb(255, 255, 255);
    width: 1600px;
    padding: 0;
    border: 0;
    margin: 0;
    height: 950px;
    position: absolute;
}

#headline{
    font-family: "ReplicaProBold";
    font-size: 36px;
    transform: translate(34px,0px);
    width: 260px;
    padding: 0;
    border: 0;
}

#nextButton {
    transform: translate(34px,0px);
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
    font-size: 22px;
    font-family: "ReplicaProRegular";
}
#prevButton {
    transform: translate(-16px,30px);
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
    font-size: 22px;
    font-family: "ReplicaProRegular";
}

#nextButton:hover {
text-decoration: underline;
}

#prevButton:hover {
    text-decoration: underline;
    text-decoration-color: rgb(0, 0, 0);
}


.student {
    position: absolute;
    background-color: black;
    border-radius: 5px;
    transition: all 0.7s ease-in-out;
}

.hover{
    border: solid rgb(201, 201, 201) 3px;
    transition: 0s;
}

.studentF1 {
    background-color: rgb(236, 114, 114);
}

.studentF2 {
    background-color: rgb(218, 92, 92);
}

.studentF3 {
    background-color: rgb(201, 67, 67);
}

.studentF4 {
    background-color: rgb(187, 50, 50);
}

.studentF5 {
    background-color: rgb(167, 10, 10);
}

.studentM1 {
    background-color:rgb(136, 136, 240);
}


.studentM2 {
    background-color:rgb(107, 107, 209);
}

.studentM3 {
    background-color:rgb(74, 74, 190);
}

.studentM4 {
    background-color:rgb(49, 49, 179);
}

.studentM5 {
    background-color:rgb(30, 30, 153);
}

.studentU{
    transform: rotate(90deg);
}