/*Header*/

.header {
    align-content: right;
  position: fixed;
  height: 0;
    padding: 0 25px;
    border-radius: 10px;
margin-top: 35px;
  display: flex;
  align-items: center;
}

.lines {
  width: 32px;
  cursor: pointer;
  position: relative;
}

.lines span {
  display: block;
  height: 4px;
  background: blue;
  margin: 5px 0;
  transition: 0.3s;
}

.dropdown {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100vw;
  background-color: blue;
    border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 24px;
}

.dropdown li {
  padding: 12px 0;
}

.dropdown a {
  color: #fff;
    font-family: avenir-next-world, sans-serif;
  text-decoration: none;
  font-size: 20px;
    transition: 0.3s;
}

.dropdown a:hover {
    font-size: 25px;
}

.lines:hover .dropdown {
  max-height: 300px;
}

.lines:hover span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.lines:hover span:nth-child(2) {
  opacity: 0;
}
.lines:hover span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* main */

h1 {text-align: center;}
h1 {
    font-family: avenir-next-world, sans-serif;
    font-style: normal;
    font-variant: thin;
    font-weight: 1;
    font-size: 45px;
    letter-spacing: 1.2px;
}

/* body settings for type and font */

body{text-align: center};
body{
    background-color: white}
body{
    font-family:sans-serif;
    font-weight: 200;
    color: darkslategrey;
    text-align: justify;
    font-size: 20px;
    word-spacing: 1px;
    margin: auto;
    margin-top: 20px;
    line-height: 1.54;
    hyphens: auto;
    letter-spacing: 0.7px;
}

/* Dates */

p {text-align: left}
p {
    letter-spacing: 1.1px;
    font-size: 12px;
    font-family: avenir-next-world, sans-serif;
    font-style: normal;
    line-height: .1;
    color: #000000;
    margin-bottom: 27px;
    margin-top: -9px;
}

/* Body settings for Margin and width */

body {
    font-family: avenir-next-world, sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: 15.5px;
    max-width: 490px;
}

/* text block title */

h2 {text-align: left}
h2 {
    font-family: avenir-next-world, sans-serif;
    font-style: normal;
    font-weight: 1;
    color: #000000;
    margin-top: 80px;
    margin-bottom: 20px;
    letter-spacing: 1.9px;
}

/* Links */

a {
    color: #00b5ff;
}
/* Thick line type */

strong{
    font-style: oblique;
    color:  #00b5ff;
}

/* Date Settings font type */

i {
    font-family: avenier-next-world, sans-serif;
    font-style: normal;
    color: #000000;
    font-size: 12px;
}

h2.wp_b {
    font-size: 20px;
}

