
html {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
}

body {
    background: #fff;
    margin: 20px 50px;
    line-height: 1.4;
}

/* #eeeeee works as a background */
div.main {
  width: 1200px;
  xbackground-color: #eeeeee;
}

div {
  xborder: 1px solid red;
}

div.callstoaction {
  xbackground-color: yellow;
  justify-content: center;
}

div.callstoaction div {
  margin: 20px 20px 20px 20px;
}

div .dropdown {
  xborder: 1px solid red;
}

div.dropdownz2 {
  box-sizing: border-box;  
  border: 1px solid gainsboro;
  width: 280px;
  padding: 10px;
}


xxxxxxxxx.dropbtn {
  background-color: #cccccc;
  color: white;
  padding: 6px 16px 6px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* was #cccccc */
.seeplans, .joinforfree {
  position: relative;
  left: -20px;
  background-color: darkcyan;
  color: white;
  padding: 10px 20px 10px 20px;
  font-size: 18px;
  border: solid 1px white;
  cursor: pointer;
  min-width: 200px;
}

/* was #cccccc */
.seeplans, .joinforfree {
  position: relative;
  left: -20px;
  background-color: darkcyan;
  color: white;
  padding: 10px 20px 10px 20px;
  font-size: 18px;
  border: solid 1px white;
  cursor: pointer;
  min-width: 200px;
}

.plandiv {
  text-align: center;
}

.plancta {
  position: relative;
  left: 0px;
  background-color: darkcyan;
  color: white;
  padding: 10px 20px 10px 20px;
  margin: 20px 10px;
  font-size: 18px;
  border: solid 1px white;
  cursor: pointer;
  min-width: 200px;
}




.dropbtn:hover,
.dropbtn:focus {
  background-color: #2980b9;
}

.dropdown {
  position: relative;
  display: inline-block;
}


/*
    FLEX CONTAINER MAIN
    ===================
*/

/*  With the space we are looking for descendants of div with the specified class */
div.flex-container-h {
  display: flex;
  flex-direction: horizontal;
}

.picture {
  margin: 50px 0px 30px 30px;
  }
  
 .blurb {
   margin: 50px 0px 0px 50px;
 } 
 
 .blurbdescription {
   font-size: 140%;
   color: #888;
 }

.plandiv {
  justify-content: center;
}





/*
    FLEX CONTAINER CODE
    ===================
*/

x.flex-container {
    display: flex;
}

x.flex-vertical-center {
    align-items: center;
}

x.flex-vertical-top {
    align-items: flex-start;
}

x.flex-vertical-bottom {
    align-items: flex-end;
}


    /* Flexbox consists of a flex container and flex items
   Setting the display as flex says this is a flex container */
   .flex-container-main {
    display: flex;
    xbackground-color: DodgerBlue;
    height: 100px;
  }

  .flex-container-main div.logo {
    xbackground-color: red;

  }

  .flex-container-main div.title {
    xbackground-color: pink;
    width: 350px;
  }
  
  div.title h1 {
    margin: 20px 0px 0px 30px;
  }

  div.title h3 {
    position: relative;
    top: -6px;
    margin: 0px 0px 0px 30px;
    color: #bbb;
    font-size: 18px;
  }

  .flex-container-main div.information {
    xbackground-color: yellow;
    width: 100%;
  }

  .flex-container-information {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .flex-container-information div.information-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .flex-container-information div.information-middle {
    xbackground-color: white;
    height: 100%;
  }

  .flex-container-information div.information-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    xbackground-color: thistle;
    xwidth: 100%;
    xalign-self: flex-end;
  }

  /* was 10 0 10 20 */
  div .information-top div {
    padding: 0px 0px 10px 20px;
    color: cornflowerblue;
    font-size: 90%;
  }

  div .information-top div a {
    color: cornflowerblue;
  }

  div .information-bottom div {
    padding: 10px 0px 10px 20px;
    color: cornflowerblue;
    font-size: 90%;
  }  

  hr {
    xborder-top: 1px solid #888;
    border: 1px solid white;
    border-left: 0px;
    margin-bottom: 16px;
 }

  hr .footer {
    color: blue;
  }    

  p.copyright {
    font-size: 80%;
    color: silver;
    margin-top: 32px;
    margin-bottom: 20px;
}
