@import "root.css";

body {
  margin: 0px;
}

h1 {
  margin-top: 0px;
}

h1,
h2,
a,
button {
  font-family: var(--font-nadpis);
  font-weight: 600;
}

p,
h3 {
  font-family: var(--font-text);
  font-weight: 400;
}

h1 {
  font-size: 72px;
  color: var(--white);
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 22px;
}

p {
  font-size: 14px;
}

a {
  font-size: 14px;
}

.btn-white {
  background-color: var(--white);
  border: 1px solid var(--blue);
  padding: 22px 65px;
}

.btn-blue {
  background-color: var(--blue);
  padding: 22px 65px;
  color: var(--white);
  border: none;
}

.btn-white a {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

header {
  height: 84px;
  width: 100%;
  background-color: var(--blue);
  border-bottom: 4px solid #fff;
  display: flex;
  justify-content: center;
}

header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

header img {
  top: -5px;
  position: relative;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav button {
}

#hero {
  background-image:
    linear-gradient(rgba(47, 139, 188, 0.51), rgba(47, 139, 188, 0.51)),
    url("/img/hero.webp");
  width: 100%;
  height: 1000px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  display: flex;
  justify-content: center;
}

#hero .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1145px;
  text-align: center;
}

#hero p {
  color: var(--white);
  font-size: 22px;
}

#hero .btn-white {
  margin-top: 50px;
}
