.error-container {
    border-radius: 10px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.error-sign {
    font-size: 4rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.error-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.redirect-message {
    font-size: 1rem;
    color: #888;
}

.home-link {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.home-link:hover {
    color: #2980b9;
}

.circle-container {
    position: relative;
    margin: 20px;
}

.circle {
    transform: rotate(-90deg);
}

.circle-background {
    fill: none;
    stroke: #ddd;
    stroke-width: 10;
}

.circle-foreground {
    fill: none;
    stroke: #f39c12;
    stroke-width: 10;
    stroke-dasharray: 339.292; 
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

#countdown-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: bold;
    color: #f39c12;
}

@keyframes countdownAnimation {
    0% {
        stroke-dashoffset: 339.292;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
