* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(32, 32, 32);
}

.contentHolder {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: 3px white dashed;
    height: 600px;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.heroHeader {
    color: white;
    font-family: monospace;
    font-size: 70px;
    text-align: center;
}

.heroParagraph {
    font-family: monospace;
    color: white;
    font-size: 20px;
    text-align: center;
}

.mt {
    margin-top: 25px;
}

.input {
    background-color: inherit;
    outline: none;
    border: dashed 2px white;
    width: 50%;
    height: 40px;
    color: white;
    font-family: monospace;
}

.large{
    width: 80%;
    height: 100px;
}

.button {
    background-color: inherit;
    outline: none;
    border: dashed 2px white;
    width: 50%;
    height: 40px;
    color: white;
    font-family: monospace;
}

.button:hover {
    border: solid 2px white;
}

.questionCard {
    border: 3px white dashed;
    height: 600px;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.answerCard{
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin-top: 100px;
    margin-bottom: 100px;
}

.center{
    width: 80%;
    text-align: center;
}