@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #070707;
    background-image: url(work_in_progress.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;

}

.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 95%;
    margin: 0 auto;
    padding: 23px 10%;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border: 1px solid #646464;
    border-radius: 18px;
}

.logo {
    font-size: 25px;
    color: #bebebe;
    text-decoration: none;
    font-weight: 600;
}

.navbar a {
    font-size: 18px;
    color: #bebebe;
    text-decoration: none;
    font-weight: 700;
    margin-left: 25px;
    transition: .3s;
}

.navbar a:hover, .navbar a.active {
    color: #6d6c6c;
}

footer {
    position: absolute; /* Позиционираме футъра абсолютно */
    bottom: 0; /* Прикрепяме го към долната част на страницата */
    width: 100%; /* Заема цялата ширина */
    background: transparent;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #333;
}


footer p {
    font-size: 14px;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.box {
    position: relative;
    z-index: 1;
    background: rgba(19, 19, 19, 0.9);
    padding: 100px;
    width: 50%;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    box-sizing: border-box;
    backdrop-filter: blur(12px); /* Adding blur effect */
    border: 1px solid #222222; /* Border style */
}


.box h1 {
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff, #6d6d6d);
    -webkit-background-clip: text; /* За съвместимост с WebKit браузъри */
    -webkit-text-fill-color: transparent; /* Скрива оригиналния текстов цвят */
}


.box a {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #6200EA;
    font-style: italic;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.box a:hover {
    background-color: #3700B3;
}