@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@1,200;1,500&display=swap');

body {
  color: white;
  text-align: center;
  background: #2c3e50;
  margin: 0;
  padding-top: 20px;
  font-family: 'Advent Pro', sans-serif;
}
.wrapper {
  height: 101vh;

}

.logo {
  display: inline-block;
  width: 115px;
  height: 115px;
}

header {
  text-align: center;
}

.logo:hover {
  animation: spin 15s infinite linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

a {
  text-decoration: none;
  color: white;
  width: auto;
  font-family: 'Advent Pro', sans-serif;
  font-size: 19px;
}

a:hover {
  color: #4fb743;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
  padding: 0;
}

h3 {
  margin: 0;
  margin-bottom: 10px;
  font-size: 21px;
}

h1 {
  margin: 0;
  margin-top: 20px;
  font-size: 30px;
}

.some-inner {
  display: inline-block;
  border-radius: 20px;
  background: #2c3e50;
  width: 190px;
  padding: 9px;
  margin: calc((220px - 190px - 18px) / 2);
}
.some {
  margin-left: auto;
  border-radius: 24px;
  margin-right: auto;
  max-width: 220px;
  margin-top: 18px;
  background-image: linear-gradient(30deg, #838383, #49555C, #838383, #49555C, #838383, #49555C);
  text-align: center;
}


footer {
	background-color: #2c3e50;
	padding: 20px 6px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
	color: #959fa8;
}

footer span.top {
	width: 100%;
	margin-bottom: 14px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
}
footer p {
	max-width: 495px;
	margin: 0 auto;
	text-align: justify;
}

footer a {
	color: #959fa8;
	width: 58px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}
 .wrapper {
  box-shadow: 0px -2px 7px 0px rgba(0, 0, 0, 0.2) inset;
}
footer img {
	height: 20px;
 }


 .buttondiv button {
	appearance: none;
	color: #fff;
  margin-top: 10px;
	padding: 10px 20px;
	width: 150px;
	border: none;
	border-radius: 29px;
}

.calculate {
	background: #4fb743;
}

button.calculate:focus-visible {
	outline: none;
}



.buttondiv button:hover {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

#formMessage {
  display: none;
  padding: 12px;
  margin-top: 15px;
  border-radius: 4px;
  font-size: 14px;
}

.message-success {
  background-color: #2c3e50;
  color: #2c3e50;
  border: 1px solid #2c3e50;
}

.message-error {
  background-color: #2c3e50;
  color: #2c3e50;
  border: 1px solid #2c3e50;
}