
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #26302F;
    color: #fff;
    font-family: 'Lato', sans-serif;
}
.test-screen {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.logo {
    position: absolute;
    margin: 0;
    top: 2%;
    left: 2%;
    color: #903;
}
.instructions {
    position: fixed;
    top: 10%;
    left: 10%;
    z-index: 100;
    font-size: 20px;
}
.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.question-container {
    margin-left: 0;
    max-width: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}
.question-image {
  width: 180px;
  height: auto;
}
.button-container {
    align-items: center;
    text-align: center;
    padding-left: 2rem;
}
#next-btn {
    background-color: green;
    color: #fff;
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    font-size: medium;
}
b {
    color: red;
}
#start-btn {
    align-items: center;
    text-align: center;
}
.st-btn {
    background-color: white;
    padding: 24px 52px;
    border: none;
    border-radius: 8px;
    font-size: medium;
}
button {
    cursor: pointer;
}
.test-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh
    z-index: 9999;
    display: flex;
    justify-content: center;
    color: white;
}
.test-text {
    width: 100vw;
    height: 100vh
}