
header {
    width: 100%;  
    background-color: #F67280;
}

.Navigation_bar{
  width: 600px;
  margin-right: auto;
  margin-left: auto;
}

nav ul {
  display: flex;
  list-style: none;
  background-color: #F67280;
  padding: 0;
  margin: 0;
}

nav ul li{ 
  width: 50%;
  text-align: center;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
 font-family: 'Alkalami', serif;
  font-size: 15px;
}

nav li a:hover {
  background-color: #F8B195;
}

aside {
  width: 100%;
  height: 210px;
  background-color: #F8B195;
}
aside h2 {
  color: #FF6F68;
  margin-top: 3px;
  padding-top: 20px;
  padding-bottom: 0;
  padding-left: 40px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: .9em;
  font-size: 30px;
    text-align: center;
}

aside ul {
  color: white;
   margin-right: 10px;
    list-style-type: square;  
    line-height: 22px;
   font-family: 'Alkalami', serif;
    text-align: center;
    list-style-position: inside;  
 
}

section {
  margin-left: 0%;
  width: 100%;
  height: 350px;
  background-color: #00B0BA;
}
section h2 {
  color: #0065a2;
  margin-top: 10px;
  margin-left: 40px;
  padding-top: 40px;
  font-family: 'Roboto Condensed', sans-serif;
  font-kerning: 300px;
  font-size: 30px;
}

section p {
    color: #0065a2;
    font-family: 'Roboto Condensed', sans-serif;
    margin-left: 40px;
    font-size: 15px;
}

section ol {
  color: white;
   margin-left: 45px;
   margin-right: 10px;
   font-family:'Roboto Condensed', sans-serif;
   list-style-type: square;
    font-size: 15px;
 
}



links h2 {
  color: #c05780;
  margin-top: 10px;
  margin-left: 40px;
  padding-top: 40px;
  font-family: 'Alkalami', serif;
  font-kerning: 300px;
  font-size: 30px;
}

links h3 {
    color: #e77577;
    font-family: 'Roboto Condensed', sans-serif;
    margin-left: 40px;
    font-size: 15px;
    
}
links h3 a {
    color: #e77577;
}

links p {
   color: black;
    font-family: 'Roboto Condensed', sans-serif;
    margin-left: 40px;
    font-size: 15px;
 
}

.button {
  background-color: #c05780; 
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 200px;
  cursor: pointer;
}

.button:hover { color: black;
}
.button2 {
  background-color: white;
  color: black;
  border: 2px solid #e7e7e7;
  border-radius: 10px;
}

.button2:hover {background-color: gray;
    color: white;
}

.button3 {
  background-color: #CFF800;
  color: #FC6238;
  border: 3px dotted #FC6238;
  border-radius: 40px;
}

.button3:hover {background-color: #FC6238;
    color: #CFF800;
}
.button4 {
  color: skyblue;
  border: none;
  font-size: 18px;
  color: #FFFFFF;
  padding: 10px;
  width: 200px;
  text-align: center;
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.button4:after {
  background: #f1f1f1;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px;
  margin-top: -120%;
  opacity: 0;
  transition: all 2s
}

.button4:active:after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s
}