



body {
	margin:0;
	display:flex;
	height:100vh;
	align-items:center;
    background-color: #3D465B;
}
.container {
    width: 85vw;
    margin: 0 auto;
    overflow: auto;
}

.quote {
    margin-top: 2em;
    font-size: 2em;
    color: #E6E7E8;
    font-style: italic;
}

.button {
    margin-top: 2em;
    position: relative;
    background-color: #99873E;
    border: none;
    font-size: 22px;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
  }
  
  .button:after {
    content: "";
    background: #f1f1f1;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -20px !important;
    margin-top: -120%;
    opacity: 0;
    transition: all 0.8s
  }
  
  .button:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
  }

  img.logo {
    max-width: 100%;
    height: auto; /* To maintain the aspect ratio */
  }