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

body, html {
  height: 100%;
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.overlay-container {
  position: relative;
  height: 100vh;
  background: url('/images/background.png') no-repeat center center/cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #005EB8 58.17%, #012D88 100%);
  z-index: 1;
  opacity:0.96;
}

.container {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    width:100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top:30px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 80px;
        padding-right: 80px;
    }
    .navigation {
    max-width: 40%;
    }
}

.header_logo {
  height:35px;
  display:inline-block;
}

.logo img {
  height: 30px;
  width: auto;
}

.navigation {
  display: flex;
  flex-direction: column;
  width:100%;
  margin-top:100px;
}

.navigation a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.25rem;
    border-top: 1px solid white;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

a:hover {
    opacity: 0.7;
}

.icon {
  margin-left: 1rem;
}
