body{
    background: #EFEFEF;
    background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
    
    margin: 10px;
    min-height: 100vh;
    min-width: 80vw;
		border-style: none;
    
    display: flex;
    flex-direction: column;
}

header{
  display: flex;
	flex-direction: initial;
	justify-content: space-between;
}

h2 {
   text-align: center;
	 font-size: 2.2vw;
}

h3 {
   text-align: center;
	 font-size: 1.6vw;
}

div{
    display: flex;
    align-items: center;
}

#forms{
		flex-direction: column;
    justify-content: center;
}

.left {
  float: left;
}
.right {
	float: right;
}

.icon-form {
  content: url(../img/form-blue.svg);
}
.icon-form:hover,
.icon-form:focus {
  content: url(../img/form-black.svg);
}
.icon {
  display: inline-block;
  width: 10%;
  height: 10%;
  background-size: auto;
	vertical-align: middle;
}

