@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: #000000;
    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 свойства */
    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;
}

.home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    max-width: 600px;
}

.home-content h2 {
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.home-content h3 {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #bebebe;
}

.home-content p {
    font-size: 16px;
    margin: 20px 0 20px;
}

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.services-container .services-box {
    flex: 1 1 30rem;
    background: #222222;
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    border: .2rem solid #523e3e;
    min-width: 500px;
    transition: .5s ease;
}

.services-container .services-box:hover {
    border-color: rgb(177, 99, 177);
    transform: scale(1.02);
}

.services-box h3 {
    font-size: 2.6rem;
}

.services-box p{
    font-size: 1.6rem;
    margin: 1rem 0 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: #161616;
    border-radius: 4rem;
    box-shadow: 0 0 1rem rgb(255, 0, 255);
    font-size: 1.6rem;
    color: #bebebe;
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
    text-decoration: none;
}

.btn:hover {
    box-shadow: none;
}

footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}
