* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: url(handsome.png) no-repeat center center/cover;
}

.container {
  width: 550px;
  height: 450px;
}

.header {
  font-size: 1.2rem;
  /* border: solid 2px rgb(0, 0, 0); */
  color: white;
  background-color: black;
  padding: 5px;
  width: 50%;
  margin: 20px auto;
}

.main-content {
  width: 100%;
  height: 300px;
  background-color: rgba(36, 32, 32, 0.5);
  padding: 50px 40px;
  box-shadow: 0 0 10px;
}

.main-content .text-area {
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgb(228, 214, 214);
}

.main-content .person {
  font-size: 1.5rem;
  color: ivory;
  text-transform: uppercase;
  margin-top: 20px;
}

.button-area button {
  background-color: black;
  color: white;
  font-size: 1.3rem;
  width: 30%;
  margin: 20px auto;
  border-radius: 5px;
}

.button-area button:active {
  background-color: rgb(83, 79, 81);
}

#more-btn {
  margin-top: 20px;
  padding: 5px 10px;
  background-color: black;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: white;
}

.secret-button button {
  position: fixed;
  top: 0;
  right: 0;
  height: 23px;
  background-color: black;
  color: white;
  /* width: 100%; */
  /* padding: 10px 10px; */
  margin: 20px auto;
  border-radius: 5px;
}
