body {
    font-family: 'Cormorant Garamond', serif;
    ;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.content {
    width: 100%;
    height: 100%;
    position: absolute;
}

.middle {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.middle-icon {
    width: 17rem;
    margin: 3rem;
    animation-name: breathing;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.countdown-item {
    display: inline-block;
    width: 4rem;
}

.countdown-caption {
    font-size: 0.85rem;
    font-weight: 300;
}

.countdown-field {
    font-size: 2rem;
    font-weight: 400;
}

@keyframes breathing {
    0% {}
    5% {}
    45% {
        transform: scale(1.05);
    }
    55% {
        transform: scale(1.05);
    }
    95% {}
    100% {}
}