.title {
	color: #5C6AC4;
}

#flashcardsholder{
    display: flex;
    overflow-y: auto;
    background-color:cadetblue;
    position: relative;
    left: 50%;
    width: 100%;
    height: 70vh;
    transform: translate(-50%,0);
    border-radius: 1vw;
    flex-wrap: wrap;
    justify-content: center;
}

#NameFlash{
    text-align: center;
    font-family: cursive;
    font-weight: bold;
    font-size: large;
}

.FlashcardReal{
    display: inline-block;
    background-color: gray;
    width: 40%;
    height: 20vh;
    margin: 3%;
}

.flashcardquestion {
    width: 100%;
    text-align: center;
    background-color: navy;
    font-weight: bold;
    color: white;
    

}

#QuestionAnswer {
  background-color: transparent;
  position: relative;
  width: 100%;
  height: 60%;
  text-align: center;
  top: 10%;
  transform: translate(0%,-10%);
}

.TOS {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%,-100%);
}

#RedirectToFlashcards {
    background-color: transparent;
    border: none;
    font-size: 97.5%;
    align-content:start;
    width: auto;
    margin: 0;
}

#DarkLightMode {
    position: absolute;
    left: 100%;
    top: 0%;
    transform: translate(-100%,0%);
}