body {
    background: rgb(42 40 87);
    font-family: "Noto Sans", sans-serif;
    position: relative;
}

a {
    text-decoration: none;
}

.promo-block {
    background-image: url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: #fff;
    position: relative;
}


.promo-content {
    z-index: 2;
    max-width: 600px;
}

.promo-content h1 {
    font-size: 40px;
    font-weight: 700;
}

nav {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; 
    z-index: 999;
    background: rgba(0, 0, 0, 0.217);  
    display: block;
}


.logo {
  display: block;
  margin: 20px auto;
  text-align: center;

}

.promo-image {
    max-width: 300px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.promo-buttons .btn {
    margin: 5px;
    padding: 20px 30px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
}

.promo-buttons .btn-primary {
    
    background-color: rgb(146, 39, 143);
    border-color: rgb(146, 39, 143);
}

.promo-buttons .btn-outline-light {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .promo-content {
        text-align: center;
    }

    .promo-image {
        margin-bottom: 20px;
    }
}


.footer-block {
    background-color: rgb(146, 39, 143);
    color: #fff;
    padding: 50px 0;
    position: relative;
}

.footer-top {
    background-color: #1d1f40;
    height: 80px;
    border-bottom-left-radius: 100% 20px;
    border-bottom-right-radius: 100% 20px;
}

.footer-content {
    padding: 40px 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-text {
    font-size: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.footer-links {
    margin-top: 20px;
}

.footer-icons img {
    width: 50px;
}

.footer-lang {
    margin-top: 30px;
}

.footer-date {
    font-size: 14px;
}