#counting-days {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, var(--pastel) 10%, var(--pastel) 80%, transparent 100%); 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    padding: 8rem 2rem 10rem 2rem;
    color: var(--blue);
}

#counting-days img {
    height: 100%;
    width: 100%;
    box-shadow: -10px 10px 1px var(--blue);
    margin-bottom: 2.5rem;
}

#counting-days h1 {
    font-family: "Italianno", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    word-spacing: 0.5rem;
    line-height: 3rem;
    margin-bottom: 2rem;
}

#counting-days p {
    font-family: "Forum", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
}

#counting-days a {
    text-decoration: none;
    color: var(--gold);
    background-color: var(--blue);
    padding: 0.5rem;
    font-size: 1.1rem;
    transition: background-color 0.5s ease, color 0.5s ease;
}

#counting-days a:hover {
    background-color: var(--gold) ;
    color: var(--blue);
    cursor: pointer;
}

#counting-days i {
    margin-right: 5px;
}