* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*  font-family: 'Roboto', sans-serif;*/
/*  font-weight: 300;*/
}

/*header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  height: 100px;
  max-width: 100%;
}

.image-class {
  padding-top: 20px;
  padding-left: 20px;
  max-width: 100%;
  height: auto;
}

#signout {
  text-align: center;
  margin-top: 20px;
  margin-right: 30px;
}*/

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
/*  min-height: 55vh;*/
}

.footer-image-container {
  display: flex;
  justify-content: space-between;
  background-color: black;
  align-items: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;

}

.footer-image-container img {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  height: auto;

}


/* Styling for mobile devices */
@media screen and (max-width: 481px) {

  
/*header {
    height: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-class {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    max-height: 60%;
    max-width: 80%;
    object-fit: contain;
  }

  #signout {
    margin-top: 10px;
    float: none;
  }*/
  main {
    width: 100%;
  }
  .footer-image-container img {
    width: 100%;

  }
}

/*main {
    width: 100%;
     border: 1px solid;
  }*/
/* Remove padding from the body */
body {
/*  max-width: 100%;*/
  margin: 0 auto;
  padding: 0;
/*  border: 1px solid;*/
  font-size: 16px;
  color: #222;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  width: 100%;
}

.center {
  text-align: center;
  box-sizing: border-box;
  padding: 40px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 0 2px 2px 0;
}
button.social-signin {
  margin-bottom: 10px;
  width: 100px;
  height: 36px;
  border: none;
  border-radius: 2px;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  transition: 0.2s ease;
  cursor: pointer;
}

button.social-signin:hover,
button.social-signin:focus {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease;
}

button.social-signin:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease;
}

button.social-signin.google {
  background: #808080;
  margin-bottom: 10px;
}