@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

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

body {
    background-color: #121212; 
    font-family: 'Roboto', sans-serif;
    color: #ffffff; 
    line-height: 1.6;
}

header {
    z-index: 2;
    background: linear-gradient(135deg, #1e1e1e, #2c3e50);
    border: 2px solid #6a11cb;
    color: #ffffff; 
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition:  box-shadow 0.3s ease;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
    animation: boja 3s ease-in-out infinite alternate;
   
}

header p {
    font-size: 1.3rem;
    margin: 10px 0 0;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

header:hover {
    box-shadow: 0 8px 25px rgb(205, 45, 226);
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5; 
}

.aa {
    position: relative;
    z-index: 2;
}

section {
    background: linear-gradient(135deg, #1e1e1e, #2c3e50);
    border: 2px solid #c691ff;
    border-radius: 20px;
    margin-bottom: 30px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(205, 45, 226);
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    color: #ffffff; 
    text-align: center;
    margin-top: 0;
    position: relative;
    padding-bottom: 10px;
    animation: boja 3s ease-in-out infinite alternate;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffffff; 
    margin: 10px auto 0;
    border-radius: 2px;
}

ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

li {
    margin: 15px 0;
}

a {
    color: #ffffff; 
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 1s ease;
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}


a:hover {
    color: #bb86fc;
    transform: scale(1.20);
}

footer {
    z-index: 2;
    background: linear-gradient(135deg, #1e1e1e, #2c3e50);
    border: 2px solid #6a11cb;
    color: #ffffff;
    padding: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    position: relative;
    overflow: hidden;
    transition:  box-shadow 0.3s ease;
}

footer p {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

footer:hover {
    box-shadow: 0 8px 25px rgb(205, 45, 226);
}

section ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; 
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.cc {
    display: flex;
    align-items: center;
    background: linear-gradient(360deg, #da0cd071, #000000);
    padding: 20px;
    border-radius: 10px;
    width: 45%; 
    min-width: 400px;
    border: 2px solid #c691ff;
}

 .cc img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-right: 20px; 
}


.bb {
    color: white;
    max-width: 300px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes boja {
    from {
        color: #ffffff;
        transform: translateY(0px);
    }
    to {
        color: #bb86fc;
        transform: translateY(-15px);
    }
}

@media only screen and (max-width: 724px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p, footer p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    a {
        font-size: 1.3rem;
    }
}