:root {
    --main-color: #6E07F3;
 }

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}

.logo {
    position: absolute;
    top: 50px;
    left: 100px;
    height: 80px;
    width: 80px;
}

.square {
    background-color: gray;
    height: 150px;
    width: 150px;
    outline: 2px solid black;
    float: left;
}

#squares {
    /* border: 1px solid black; */
    width: 450px;
    height: 450px;
    margin: auto;
    padding-top: 100px;
}

.startButton {
    width: 295px;
    height: 54px;
    border-radius: 50px;
    border: solid 2px var(--main-color);
    font-family: 'Nunito', sans-serif;
    background-color: white;
    font-size: 20px;
    color: var(--main-color);
    transition: all 0.3s ease-in-out;
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.startButton:hover {
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
}

h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

#opacity {
    height: 100%;
    width: 100%;
    background-color: #6E07F3aa;
    position: absolute;
    top: 0;
    display: none;
}

#trivia {
    background-color: azure;
    border: 1px solid black;
    min-height: 300px;
    width: 600px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

p, h3 {
    margin: 40px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.triviaAnswerContainer {
    text-align: center;
    margin-bottom: 40px;
}

.triviaAnswer {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    height: 40px;
    width: 100px;
}

#nightToggle {
    width: 65px;
    height: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
}

#nightToggle:hover {
    cursor: pointer;
}