html {
  font-family: "Lucida Sans", sans-serif;
}

body {
    background-color: #EEEEEE;
	margin: 0;
	color: #ffffff;
	top: 0;
	left: 0;
}

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

header {
	overflow: hidden;
	background: #313131;
}

header .title {
    position: relative;
    height: auto;
	max-width: 100%;
	margin-bottom: 10px;
    left: 8px;
    
}

ul {
    list-style-type: none;
}

.menu ul {
  position: relative;
  text-decoration: none;
  margin: 20px 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 10px;
  color: #ffffff;
}
.menu li a {
  display: block;
}

.menu li:hover {
  background-color: #222222;
  color: #ffffff;
  text-decoration: none;
}

.menu a {
    color: white;
    text-decoration:none;
}

.main {
	background: #EEEEEE;
    color: #313131;
	}

.footerDesktop, .footerMobile {
    font-size: 10px;
    color: #888888;
}

.footerDesktop {
  position:absolute;
  bottom: 0px;
  width: 90%;
}

.footerMobile {
    margin: 5%;
}

/*---------------Roasted App--------------*/

#roasted-privacy {
    text-align: justify;
}

.roastedLogo {
    max-width: 50%;
}


/*---------------Responsive Design--------------*/

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%; height: 100vh;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
  
}

@media screen and (max-width: 767px) {
  footer.footerDesktop {
      display: none;
  }
  div.spacer {
      display: none;
  }
  header {
      position: relative;
  }
}

@media screen and (min-width: 768px) {
  footer.footerMobile {
    display: none;
  }
  header {
      position: fixed;
  }
}