* {
  margin: 0;
  padding: 0;
}
:root {
  --main-color: #cd6f20;
  --light-color: #666;
  --light-bg: #eee;
  --white: #fff;
  --black: #303030;
}
.hero {
  width: 100%;
  height: 100%;

  background: black;
  position: relative;
}
#calendar {
  width: 100%;
  /*position: absolute;*/
  top: 0%;
  left: 0%;
  /*transform: translate(10%,10%);*/
  margin-top: 0%;
}

@media screen and (max-width: 900px) {
  #calendar {
    margin-top: 0%;
    width: 100%;
    /* position: absolute;*/
    margin-top: 0%;
    top: 5%;
    left: 0%;
  }
  .hero {
    background: none;
  }
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  transition: all.2s linear;
  border: none;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7em;
  scroll-behavior: smooth;
}
body {
  position: relative;
}
/* .header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background-color:#95959546;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8%;
    height: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);} */
.header .logo {
  color: var(--main-color);
  font-size: 25px;
  font-weight: bold;
}
.header .logo span {
  color: #00203f;
}
.menu {
  display: flex;
}
.menu li {
  list-style: none;
  margin: 0 15px;
}
.menu li a {
  font-size: 19px;
  color: #00203f;
  font-weight: 300;
  transition: 0.2s;
  font-weight: bold;
}
.menu li a:hover {
  color: var(--main-color);
}
.header button {
  background-color: var(--main-color);
  cursor: pointer;
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
}
.header button:hover {
  background-color: #00203f;
  cursor: pointer;
  color: var(--main-color);
  padding: 10px 25px;
  border-radius: 10px;
}

.evens {
  font-size: 20px;
  margin-top: 20px;
  border: solid #666;
  text-align: start;
}
