@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700');

/* heignt of header */
body {
  padding-top: 70px;
}

a:hover, a:focus {
    text-decoration: none;
}

.header {
    background-color: var(--main-color);
    height: 70px;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--main-color);
  width: 100%;
  max-width: 1115px;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  cursor: pointer;
  width: 70px;
  height: auto;
}

.header-links {
    display: flex;
    gap: 32px;
}

.header-link {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px; 
  color: #ffffff;
  font-weight: 700;
  transform: all 0.2s;
}

.header-link:hover {
    color: #feba5b;
}
