body {
    background-color: rgb(7, 16, 33);
    font-family: sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.headline-main {
    margin: 0px;
    margin-bottom: 15px;
}

.container-main {
    border-radius: 16px;
    background-color: rgb(13, 16, 60);
    -webkit-box-shadow: 5px 5px 20px 3px #000000;
    box-shadow: 5px 5px 20px 3px #000000;
    padding: 70px;
}

.kalender {
    display: grid;
    grid-template-columns: 135px 135px 135px 135px 135px 135px;
    gap: 12px;
}

.door {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: not-allowed;
    background-color: rgb(70, 70, 70);
    border-radius: 10px;
    width: 130px;
    height: 90px;
}

.door:hover {
    background-color: rgb(55, 55, 55);
}

.date {
    margin: 0px;
}

.container-below {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.button-settings {
    background-color: transparent;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px rgb(136, 136, 136) solid;
    color: rgb(230, 238, 248);
}

.button-settings:hover {
    color: rgb(200, 220, 248);
}