/* COMPONENTS */
.image-navigation-button-wrapper div {
    width: 300px;
}
.image-navigation {
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 20px;
}
.image-navigation-button-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.grid {
    display: grid;
    row-gap: 20px;
}
.grid img {
    border: 1px solid lightgrey;
    width: 100%;
}
.nav-buttons a {
    text-align: center;
    display: flex;
    padding: 20px;
    text-decoration: none;
    box-shadow: rgba(60, 60, 60, 0.3) 5px 5px 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #005f57;
    color: black;
    font-size: 18px;
    font-weight: 400;
    justify-content: center;
    align-items: center;
}
.nav-buttons a:hover {
    color: white;
    background: #005f57;
}
.timeline {
    display: grid;
    grid-template-columns: auto 8px 240px;
}
.timeline .copy-wrapper {
    font-size: 15px;
    background: #fbf3e9;
    padding: 20px;
    margin-bottom: 20px;
    word-wrap: break-word;
}
.timeline .copy-wrapper ul {
    padding-left: 10px;
}
.timeline .timeline-image {
    margin-bottom: 20px;
    background-size: cover;
}
.timeline p {
    padding: 0;
}
.timeline .connecting-line {
    background: #deba59;
}
.timeline .line-fix {
    margin-bottom: 20px;
}
#countdown {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}
.unit-number {
    color: #91cb4c;
    font-weight: bold;
    font-size: 30px;
}
.unit-label {
    color: #005f57;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}
@media only screen and (max-width: 768px) {
    /* COMPONENTS */
    .image-navigation {
        grid-template-columns: auto;
    }
    .image-navigation-button-wrapper {
        row-gap: 20px;
        align-items: center;
    }
    .timeline {
        grid-template-columns: auto 8px 200px;
    }
    .timeline .timeline-image {
        object-fit: cover;
        height: calc(100% - 20px);
        width: 200px;
    }
}
@media only screen and (max-width: 480px) {
    .timeline {
        grid-template-columns: auto;
    }
    .timeline .timeline-image {
        width: 100%;
        padding-bottom: 100%;
        border-top: 8px solid #deba59;
    }
    .timeline .connecting-line {
        display: none;
    }
    .timeline .copy-wrapper {
        margin-bottom: 0;
    }
}
