* {
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(52, 51, 51);
  height: 100px;
  h1 {
    font-size: 40px;
    color: rgb(218, 218, 218);
  }
}
body {
  background-color: rgb(5, 185, 185);
}

main {
  height: 35rem;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  img {
    height: 240px;
    width: 340px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .card {
    background-color: rgba(0, 0, 0, 0.308);
    border: 5px solid rgb(52, 51, 51);
    border-radius: 25px;
    padding: 20px;
    p {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 40px;
      font-size: 25px;
      font-weight: 600;
      color: rgb(249, 246, 246);
      margin-top: 10px;
    }
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(89, 89, 89);
  height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  p {
    font-size: 20px;
    color: white;
    span {
      font-weight: bold;
      color: rgb(233, 196, 126);
    }
  }
}
