@font-face {
    font-family: 'Montserrat';
    src: url('styles/Montserrat-Regular.ttf') format('truetype');
    font-weight: 300; /* kann man noch verändern */
    font-style: normal;
}
        
body {
    font-family: 'Montserrat';
}

.reader-centered {
    text-align: center;
}
        
img {
    max-width: 100%;
    height: auto;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 40%;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: radial-gradient(circle, rgb(168, 247, 164), rgba(168, 247, 164, 0.33));
    border-radius: 0.5em;
    padding: 1em;
    transition: all 0.5s;
    display: inline-flex;
    border: none;
}

button:disabled {
    opacity: 0.5;
}

#counter {
    color: #000000;
    margin-left: 0.5em;
}
        
#az, #sz {
    justify-content: center;
    align-items: center;
    width: 4em;
    height: 4em;
    font-weight: 700;
    transition: 0.5s all ease;
}
        
#az:hover, #sz:hover {
    transform: scale(1.1);
}
        
#Zurueck, #Weiter {
    transition: 0.5s all ease;
}
        
#Zurueck:hover, #Weiter:hover {
    transform: scale(1.1);
}
        
h1 {
    font-weight: 700;
    font-size: 3em;
    margin: 10em;
}
        
.button-box {
    background: radial-gradient(circle, rgb(222, 255, 222), rgba(222, 255, 222, 0.5));
    border-radius: 1em;
    margin-bottom: 5em;
    padding: 0.25em;
}
        
@media (max-width: 750px) {
    .button-box {
        border-radius: 0.5em;
        margin-bottom: 1.5em;
        padding: 0.25em;
    } 
}
            
#az, #sz {
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    font-weight: 700;
    transition: 0.5s all ease;
}
            
#Zurueck, #Weiter {
    font-size: 75%;
}
            
.i-footer {
    height: 22em;
    width: 100%;
}   