html {
  height: 100%;
}

body {
  font-size: 14px;
  font-family: Times New Roman;
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 30px;
  background-color: #50554f;
  color: #FFF;
}

html {
  margin: 0;
}

h1 {
  top: 30px;
  right: -65px;
  font-size: 20px;
  position: relative;
}

a {
  text-transform: none;
  color: #FFF;
  text-decoration: none;
}

.logo {
  top: 10px;
  right: 10px;
  float: right;
}

.logo img {
  width: 220px;
  margin-top: -20px;
}

main {
  color: #FFF;
  display: block;
  height: calc(100% - 6.3em);
  overflow: scroll;
  outline: none;
}

.icon {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.icon img {
  width: 50px;
  height: 50px;
}

button {
  font-size: 1em;
  margin-top: 80px;
  font-size: 14px;
  font-family: Times New Roman;
  color: #FFF;
  right: 30px;
  float: right;
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

html {
  overflow: scroll;
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent; /* make scrollbar transparent */
}

@media (max-width:600px) {
  body {
    position: fixed;
  }
  
  .logo {
    display: block;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
  }
  
  h1 {
    margin-left: -130px;
  }
  
  main {
    width: 80%;
    height: calc(100% - 15em);
  }
  
  .icon {
    display: none;
  }
  
  button {
    position: relative;
    left: 1px;
    float: left;
  }
}