@font-face {
    font-family: 'RussoOne';
    src: url('./RussoOne-Regular.ttf');
}
@font-face {
    font-family: 'LilexBold';
    src: url('./Lilex-Bold.ttf');
}

@font-face {
    font-family: 'LilexMedium';
    src: url('./Lilex-Medium.ttf');
}
@font-face {
    font-family: 'LilexRegular';
    src: url('./Lilex-Regular.ttf');
}
@font-face {
    font-family: 'LilexSemiBold';
    src: url('./Lilex-SemiBold.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "LilexRegular", Roboto, Helvetica, Arial, sans-serif;
    background-color: #d1d1d1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.main-container {
    position: relative;
    z-index: 10;
    background-color: #fafafa;
    border: 2px solid #cacaca;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

h1 {
    font-family: "LilexMedium";
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: none;
}

h2, h3, h4, h5 {
    font-family: "LilexMedium";
    margin-bottom: 0.5rem;
    background: none;

}

.small-text {
    margin-top: 1rem;
}


.header {
    text-align: left;
}

.basic-text {
    text-align: start;
}

.article-block {
    margin: 1.5rem 0 1rem;
}

.label-text {
    font-size: 1.2rem;
    color: #a1a1a1;
}

.task-link {
    text-align: left;
}

.info-block {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d1d1;
    border-left: 4px solid #ff4757;
    text-align: left;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.disclaimer-footer {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.7rem;
    color: #999;
    text-align: justify;
    line-height: 1.4;
    font-family: "LilexRegular", monospace;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .disclaimer-footer {
        text-align: left;
        font-size: 0.65rem;
        margin-top: 2rem;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, 20px);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    #years-counter {
        font-size: 2rem;
    }
    .main-container {
        padding: 1.5rem;
    }
    .button-group {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

