

html, body {
    width: 100%;
    height: 100%;
    margin: 0px;
}

.base {
    height: 100%;
    width: 85%;
    display: flex;
    float: right;
    background-color: #1f1f1f;
}
.overlay {
    height: 100%;
    width: 15%;
    display: flex;
    float: left;
    background-color: rgb(15, 15, 15);
    justify-content: center;
    
}

.schrift {
    font-size: 48px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
}

.overlay-schrift-clicked {
    transition-duration: 1s;
    display: flex;
    color: white;
    text-decoration: underline red;
    font-size: 35px;
    padding: 20px;
    position: fixed;
    
}
.overlay-schrift-clicked:hover {
    font-size: 40px;
}
.overlay-schrift {
    color:rgb(80, 80, 80);
    font-size: 30px;
    
}