* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color:#33FFAC;
  background-size: 100% 100%;
  padding: 20px;
}

#header {
	text-align: center;
  color:blue;
  font-family: 'Hanalei', cursive;
}

#navbar {
  overflow: hidden;
  background-color: #33FFAC;
  font-family: 'Great Vibes', cursive;
}

#navbar a {
  float:left;
  display:block;
  color: blue;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;

}

#navbar a:hover{
  background-color: blue;
  color: #33FFAC;
}

.col {
  float: left;
  width: 25%;
  padding: 15px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.font-size {
  font-size: 20px;
}

.container{
  position: relative;
  min-height: 100vh;
}

#content{
  text-align:center;
}

#red {
  color:red;
  font-family: 'Great Vibes', cursive;
}

h3 {
  color:pink;
  font-family: 'Great Vibes', cursive;
}

li {
  color:blue;
}

dl {
  color:green; 
}

dt, dd {
  font-family: 'Great Vibes', cursive;
}

#footer{
  position:fixed;
  background-color: #33FFAC;
  color: #f2f2f2;
  bottom: 0;
  width: 100%;
  padding: 10px;
  text-align: center
}