@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    margin: 0;
    overflow: scroll; 
    overflow-x: hidden;
    background: url("fotokrida20.jpg") center/cover fixed; 
}  

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(50%);
    z-index: -1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  }
  
  header .navbar {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
  }
  
  .navbar .logo {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;  
  }
  
  .navbar .logo span {
    color: blue;
  }
  
  .navbar .menu-links {
    display: flex;
    gap: 40px;
    list-style: none;
  } 
  
  .navbar a {
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease;
  }
  
  .navbar a:hover {
    color: aquamarine;
  }

  .container {
    width: 100%;
    height: 100vh;
    margin-top: 50px;
    margin-bottom: 100px;
}

.slides {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    margin-left: 170px;
    margin-top: 100px;
    gap: 5px;
    color: #fff;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 1);
    margin-bottom: 100px;
    max-width: 1300px;
}

.slides h2 {
    font-size: 30px;
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 30px;
    align-items: center;
}

footer {
    color: #fff;
    padding: 20px;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-content p {
    margin: 5px 0;
  }
  
  .footer-content a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-content a:hover {
    text-decoration: underline;
  }
