@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("fotokrida29.jpg") center/cover fixed; 
}  

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(45%);
    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;
}

.slides {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-left: 200px;
    margin-top: 10px;
    gap: 50px;
    color: #fff;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 1);
}

.slides img {
    width: 500px;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 1);
}

.slides h2 {
    font-size: 70px;
    font-weight: 600;
    max-width: 400px;
}
