﻿#calendar-container h5 {
    margin-top: 2rem;
    text-align: center;
    color: #fff;
}

.calendar {
    position: relative;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: 20px;
    width: 150px;
    height: 250px;
    background: white;
    box-shadow: 1px 2px 10px black;
}

.calendar-frame {
    position: relative;
    width: 100%;
    height: 50px;
    background: #c39468;
}

.calendar-screw {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #bdc3c7;
    border-radius: 10px;
    top: 30%;
    box-shadow: inset 0px 0px 10px #2c3e50;
    border: 1px solid #7f8c8d;
}

.calendar-left {
    left: 15px;
}

.calendar-right {
    right: 15px;
}

.calendar-shine {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    left: 0px;
    top: 0px;
}

.calendar-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #7f8c8d;
    top: 8px;
    transform: rotate(20deg);
}

.calendar-rerotate {
    transform: rotate(60deg);
}

.calendar-year {
    position: absolute;
    width: 100%;
    height: 100%;
}

    .calendar-year h1 {
        text-align: center;
        color: white;
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 50px;
    }

.calendar-content {
    position: absolute;
    width: 100%;
    height: 200px;
}

    .calendar-content h1 {
        text-align: center;
        font-size: 100px;
        margin: 0;
        padding: 0;
        line-height: 100px;
        color: #000;
    }

    .calendar-content h2 {
        text-align: center;
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 50px;
        color: #000;
    }

