* {
  margin: 0;
  padding: 0;
}

body {
  background-color: bisque;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #ffa559;
  border-top: black solid 16px;
}
h1 {
  text-align: center;
  font-size: 45px;
  border-bottom: solid black 4px;
  width: 300px;
  padding-bottom: 20px;

  margin-bottom: 5px;
}
h2 {
  text-align: center;
  border: solid black 2px;
  background-color: bisque;
  width: 180px;
  padding: 10px;
}
button {
  display: inline;
}

.header-container {
  display: flex;
  align-items: center;
  flex-direction: column;

  width: 100%;
  padding: 30px 0;
  background-color: #ffa559;
  border-bottom: black solid 16px;
}
.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  margin-top: 30px;
}

.main-card {
  background-color: #ff6000;
  border: solid black 4px;
  width: 50%;
  height: 400px;
  padding: 20px;
  border-radius: 20px;
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  visibility: hidden;
  overflow: visible;
}

.card-title {
  font-size: 30px;
  margin-bottom: 20px;
}

.questions {
  border: solid black 2px;
  margin: 20px;
  padding: 20px;
  background-color: #ffa559;
  width: 300px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
}

.questions:hover {
  background-color: blanchedalmond;
}

.score {
  border: solid black 2px;
  margin-left: -21.5px;
  padding: 10px 20px;
  background-color: #ffa559;
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
}
.buttons {
  display: flex;
  flex-direction: row;
}
#submit-button {
  padding: 20px;
  font-size: 15px;
  background-color: #ffa559;
  width: 300px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  align-content: center;
}
#scoreBoard {
  padding: 20px;
  font-size: 15px;
  background-color: #ffa559;
  width: 300px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  align-content: center;
  display: none;
}
#submit-button:hover {
  background-color: rgb(253, 226, 185);
}

@media screen and (max-width: 1462px) {
  .main-card {
    width: 65%;
  }
}
