@font-face {
  font-family: "OpenSansMed";
  src: url('fonts/OpenSans-Medium.ttf');
}

@font-face {
  font-family: "OpenSansBold";
  src: url('fonts/OpenSans-Bold.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "OpenSansMed";
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.wrapper {
  text-align: center;
  width: 70%;
}

h1 {
  margin-bottom: 20px;
  font-family: "OpenSansBold";
  font-size: 5em;
}

.content {
  width: 100%;
  min-height: 300px;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
}

.content p {
  color: rgb(82, 82, 82);
}

footer {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 0;
}
