.container {
  /*if need be we can add some padding to everything*/
  padding: 0 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
}

body {
  background: white;
  color: gray;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: "Courier New"; /* Use a font close to your design */ /* Optional background */
}

span {
  color: lightpink;
}

#card-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-top: 7%;
  left: 0px;
  top: 0px;
  z-index: 10;
  padding: 2rem;
}

.card {
  background-color: floralwhite;
  border: 1px solid #424242;
  box-shadow:
    0 0.5em 1em -0.125em hsla(0, 0%, 4%, 0.1),
    0 0 0 1px hsla(0, 0%, 4%, 0.02);
  border-radius: 15px;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 10;
}

#center-text h1 {
  font-size: 60px;
  text-align: center;
}

#center-text h3 {
  text-align: center;
}

#center-text p {
  font-size: x-large;
  text-align: center;
}

.buttons-container {
  margin-top: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.black-nav-bar {
  background-color: #484444;
  width: 100%;
  height: 35px;
  border-radius: 10px 10px 0px 0px;
}

/* right now we just have the aqua color as a stand-in until we think of something else*/
/*this is all code to make sure my website looks presentable in a smaller device, which is how most people are going to be viewing my website in the first place*/
@media (max-width: 500px) {
  #center-text {
    color: aliceblue;
  }
  span {
    color: pink;
  }

  .container {
    padding: 0 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
    margin-top: 40%;
  }
  #card-container {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    padding: 2rem;
  }

  .card {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    width: 100%;
  }
  .black-nav-bar {
    background-color: transparent;
  }
  #center-text h1 {
    font-size: 30px;
    text-align: center;
  }

  #center-text h3 {
    text-align: center;
  }

  #center-text p {
    font-size: x-large;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .buttons-container {
    margin-left: -7%;
  }
}
