.coming-soon {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to right,
    rgb(255, 255, 255, 0.7), 
    rgb(255, 255, 255, 0.7)), url('../assets/web-hosting.jpg') no-repeat  center / cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.coming-soon-write-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.coming-soon-write-up img {
    width: 4rem;
}

.coming-soon-write-up h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.coming-soon-write-up p {
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}

.btn-link {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 1rem;
    border-radius: 5px;
    gap: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.coming-btn {
    padding: 0;
    color: var(--white-color);
    all: unset;
}

.btn-link:hover {
    box-shadow: 2px 4px 10px rgb(3, 7, 108, 0.3);
    gap: 10px;
}

/* Progress bar section */

.progress-bar-container {
    width: 50%;
    height: 1rem;
    background-color: var(--white-color);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
}

.progress-bar {
    position:absolute;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50px;
    animation: progress-bar-animation 5s forwards;
    /* width: 100%; */

}

@keyframes progress-bar-animation {
    0% {
        width: 0%;
    }

    100% {
        width: 85%;
    }
}

@media (min-width: 768px){
 
    .coming-soon-write-up {
        gap: 3rem;
    }
    
    .coming-soon-write-up img {
        width: 7rem;
    }
    
    .coming-soon-write-up h1 {
        font-size: 3rem;
    }
    
    .coming-soon-write-up p {
        font-size: 1.25rem;
    }
    
    .btn-link {
        padding: 1.5rem 3rem;
    }
    
    
    /* Progress bar section */
    
    .progress-bar-container {
        width: 40%;
        height: 1.25rem;
    }
}

/* laptops */
@media (min-width: 1000px){
    
    .coming-soon-write-up h1 {
        font-size: 4rem;
    }
    
    /* Progress bar section */
    
    .progress-bar-container {
        width: 25%;
    }
}
