:root {
    --base: #F2EFE7;
    --blue1:#9ACBD0;
    --blue2:#48A6A7 ;
    --blue3:#006A71 ;
    --blue2hoover:#4cafb0;

}
body {
    background-color: var(--base) !important;
}

/* Header styling */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--blue1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: 60px;
}
.header h2 {
  font-weight: bold;
  font-size: 30px;
}
.header h2 span{
  padding:0 7px;
  color: var(--blue2);
}
.header button {
  font-weight: bold;
  background-color: var(--blue2);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.header button:hover {
  background-color: var(--blue2hoover);
}

/* Header end */

/* Main content styling */

.main > .container {
  margin-top: 60px;
}

hr {
  border: none; height: 5px; background-color: var(--blue3);
  margin: 10px auto;
  width: 90%;
  border-radius: 5px;
}
.header > a {
  text-decoration: none;
  color: inherit;
}
