@font-face {
    font-family: Lato-Regular;
    src: url(fonts/Lato/Lato-Regular.ttf);
}
@font-face {
    font-family: Lato-Hairline;
    src: url(fonts/Lato/Lato-Hairline.ttf);
}
@font-face {
    font-family: PlayfairDisplay-Italic;
    src: url(fonts/PlayfairDisplay/PlayfairDisplay-Italic.ttf);
}
body {
    background-color: #2c2c2c;
}
.medium-text-1{
    font-family: Lato-Regular;
    font-size: 18px;
    color: #555;
    line-height: 1.2;
    text-transform: uppercase;
}
.medium-text-2{
    font-family: PlayfairDisplay-Italic;
    font-size: 18px;
    color: #fff;
    line-height: 1;
}
.large-text-1{
    font-family: Lato-Hairline;
    font-size: 72px;
    font-weight: bolder;
    color: #2e0a0a;
    line-height: 1.1;
    text-transform: uppercase;
    background-color: rgba(33, 172, 237, .05);
    padding: 0px 15px;
    border-radius: 1ch;
}
.large-text-2{
    font-family: PlayfairDisplay-Italic;
    font-size: 80px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
}
.header-wrapper {
    position: absolute;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: flex-end;
    gap: 10ch;
}
.button-send-email {
    margin: 2ch 10%;
}
.send-email-link{
    text-decoration: none;
    background-color: #fff;
    color: #000;
    padding: 0.5ch;
    border-radius: 10px;
}
.main-display-wrapper{
    position: absolute;
    top: 10vh;
    bottom: 10vh;
    left: 10%;
    width: 80%;
    display: flex;
    flex-flow: column;
    align-items: center;
}
.footer-wrapper{
    position: absolute;
    bottom: 0;
    height: 10vh;
    display: none;
    justify-content: center;
}
.message {
    margin: 10px 0;
    text-align: center;
}
.remaining-time-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 95%;
    justify-content: space-between;
}

.date-part {
    text-align: center;
    align-items: center;
    margin: 3ch;

}
.label{
    margin: 3ch 0;
}

@keyframes carousel {
    0% { background-image: url("./images/bg01.jpg");}
    25% { background-image: url("./images/bg02.jpg");}
    50% { background-image: url("./images/bg03.jpg");}
    75% { background-image: url("./images/bg04.jpg");}
    100% {background-image: url("./images/bg01.jpg");}
}
.carousel {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    animation: carousel 60s ease-in-out infinite;
}