/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}


.hero {
  height: 100vh;
  width: 100%;
  background: url('odbojka1.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0,0,0,0.3);
}

.hero-text {
  position: relative;
  text-align: center;
  color: white;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero-text nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.2em;
}

.hero-text nav a:hover {
  text-decoration: underline;
}


nav {
  background-color: #0077b6;
  padding: 10px 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
