@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Light-webfont.woff') format("woff");
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Roboto';
  src: url("Roboto-LightItalic-webfont.woff") format("woff");
  font-style: italic;
  font-weight: 300;
}

@font-face {
  font-family: "Roboto";
  src: url("Roboto-Bold-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 700;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: #F3F8FF; /* White Cornflower */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8em;
  color: #686B6F; /* Medium gray - primary text color */
}

em {
  font-style: italic;
}

strong {
  font-style: bold;
}

.page {
  display: flex;
  flex-wrap: wrap;
}

/* LINK FORMATTING */

a:link,
a:visited {
  color: #F3F8FF; /* White Cornflower */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.lang {
  display: none;
}

.eng {
  color: #686B6F; /* Medium gray - primary text color */
}

.hoverable:hover > .lang {
  display: inline;
  text-decoration: none;
}

.hoverable:hover > .eng {
  display: none;
}


.lang:link,
.lang:hover,
.lang:visited {
  color: #686B6F; /* Medium gray - primary text color */
}

.in-text:link,
.in-text:visited {
  color: #6A9DE7; /* Cornflower */
  text-decoration: none;
}

.in-text:hover {
  text-decoration: underline;
}

.submit:link,
.submit:visited {
    text-decoration: none;
}
.submit:hover,
.submit:active {
  color: #6A9DE7; /* Cornflower */
}

/* HEADER AND MENU BAR */

.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;


  width: 100%;
  height: auto;
  padding: 25px;
  background: #6A9DE7; /* Cornflower */

}


.logo {
  font-family: 'Bungee Shade', cursive;
}

.links {
  display: flex;
  justify-content: space-between;
}

.menu > li {
  display: inline;
  margin-right: 50px;
  font-size: 16px;
}

.menu > li:last-of-type {
  margin-right: 0;
}

span {
  color: #E8EEF7;
}

.divider {
  color: #E8EEF7;
}

.lang-list {
  display: none;
}

.dropdown {
  position: relative;
}

.dropdown > span {
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.dropdown:hover > span {
  color: #686B6F;
}

.dropdown:hover .lang-list {
  display: flex;
  flex-direction: column;
  background: #A8C9F9; /* Medium cornflower */
  border-radius: 5px;
  padding-top: 60px;
  color: #939AA2; /* Medium gray - primary text color */


  position: absolute;
  width: 135px;
  top: -25px;
  left: -30px;
  z-index: 1;
}

.lang-list li {
  list-style: none;
  border-bottom: 1px solid #E8EEF7; /* Light gray */

  padding: 0 40px 10px 20px;
  margin: 10px;
}

.lang-list li:last-of-type {
  border-bottom: none;
}

a {
  color: #A8C9F9;
}


/* CONTENT */
.content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 20%;
  padding-right: 20%;
  margin-top: 70px;
  height: auto;
  justify-content: center;
  padding-top: 5%;
  padding-bottom: 5%;
  align-items: flex-start;
}

.welcome {
  display: flex;
  width: auto;
  height: auto;
  margin-bottom: 50px;

}


h1 {
  color: #E8EEF7;
}


h2 {
  text-decoration: underline;
  font-size: 24px;

  padding-top: 5px;
  padding-bottom: 8px;
}

h3 {
  font-size: 18px;
  font-weight: normal;
  text-decoration: underline;
}

p {
  font-size: 18px;

  padding-top: 5px;
  padding-bottom: 15px;
}


.telephone-method {
  padding-bottom: 20px;
}

.telephone-method li {
  list-style: none;
  padding: 0 40px 10px 20px;
}

.button {
  display: flex;
  align-items: center;
}

.button-submit,
.button-survey {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;


  color: #F3F8FF; /* White Cornflower */
  background-color: #6A9DE7; /* Cornflower */

  border: 3px solid #6A9DE7;
  border-radius: 10px;

  padding: 5px;
  margin: 20px auto;
  width: 100px;
  cursor: pointer;
}

.button-submit {
  margin-bottom: 5%;
}


.button-submit:hover,
.button-survey:hover {
  background-color: #F3F8FF; /* White Cornflower */
  border: 3px solid #6A9DE7; /* Cornflower */
  color: #6A9DE7; /* Cornflower */
}

.button-submit:hover > .submit,
.button-survey:hover > .submit {
  color: #6A9DE7; /* Cornflower */
}

/* POEM OF MONTH FORMATTING */

.poems {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
 .pom-current,
 .trom-current {
   border: 3px solid #6A9DE7; /* Cornflower */
   padding: 10px 40px;
   font-size: 16px;
 }


.pom-current {
  margin-left: 20px;
}



/* Mobile Styles */
@media only screen and (max-width 414px) {

}

/* Tablet Styles */
@media only screen and (min-width 415px) and (max-width 960px) {


}

/* Desktop Styles */
@media only screen and (min-width: 961px) {

}
