@font-face {
    font-family: 'Bellerose';
    src: url('./fonts/BelleroseLight.woff2') format('woff2'),
        url('./fonts/BelleroseLight.woff') format('woff');
    font-weight: 300;
    font-style:normal;
    font-display:initial;
}

@font-face {
    font-family: 'Bellerose Light:1.0';
    font-style: normal;
    font-weight: normal;
    src: local('Bellerose Light:1.0'), url('Bellerose.woff') format('woff');
    }
    
@font-face {
    font-family: 'Earth_Quest';
    src: url('./fonts/EarthQuest.woff2') format('woff2'),
        url('./fonts/EarthQuest.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* General body styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #f5f5f5;
    font-family: 'Bellerose', serif;
    color: #f5f5f5;
}
.li {
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    font-family: 'Bellerose', serif;
}
/* Floating div that holds all columns */
.floating-div {
    display: flex;
    width: 80%; /* Set width to a percentage of the viewport */
    max-width: 1200px; /* Max width to prevent it from growing too large */
    min-width: 500px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Column styles */
.col {
    padding: 20px;
}

.col-left-right {
    background-color: #620001; /* Light green background */
    background-image: url(./images/rood-fluweel2.jpeg);
    /* background-size: 120%; */
    background-size: cover;
    background-repeat: no-repeat;
}
/* Left column - 20% */
.col-left {
    flex-basis: 20%;
}
/* Image inside the left column */
.left-column-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* Space between image and text */
}

/* Text inside the left column */
.left-column-text {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    font-family: 'Bellerose', serif;
}

/* Center column - 60% */
.col-center {
    flex-basis: 60%;
    min-width: 500px; /* Ensure minimum width */
    min-height: 500px;
    background-image: url(./images/binnenkant.png);
    background-size: cover;  /* Make the image cover 100% of the column */
    background-position: bottom; /* Ensure the image is centered in the column */
    background-repeat: no-repeat; /* Prevent tiling of the image */
}

/* Right column - 20% */
.col-right {
    flex-basis: 20%;
    position: relative;
}

/* The bottom-right link in the third column */
.bottom-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 8px;
    color: white;
    text-decoration: none;
}

.bottom-link:hover {
    text-decoration: underline;
}


/* ##############   Countdown styling */

#countdown p {
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding (if needed) */
    margin-top: 0;
    margin-bottom: 0px; 
}

#countdown {
    text-align: center;
    font-size: 22px;
    color: #620001;
}

#timer {
    font-size: 24px;
    font-weight: bold;
    color: #deba07;
    line-height: 1;
    /*color: #ff0000; /* Optional: Red color for countdown numbers */
}


/* Styling for the list of links with the same style as the bottom link */
.link-list {
    list-style-type: circle; /* Remove bullets */
    padding: 0;
    margin-left: 10px;
    font-family: 'Bellerose';
}

.link-list li {
    margin-bottom: 0px; /* Add some space between list items */
}

.link-list a {
    font-size: 16px; /* Same font size as the right bottom link */
    color: white; /* Same color */
    text-decoration: none; /* Remove underline */
}

.link-list a:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
}
/* Image inside the left column */
.link-list img {
    max-width: 30px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 0px; /* Space between image and text */
}
.ceremonie-link {
    font-size: 14px;
    color: white;
    text-decoration: none;
}

.ceremonie-link:hover {
    text-decoration: underline;
}
