/* index.html page */

body {
    background-color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

img {
    margin: 2rem auto;
}

.intro {
    color: black;
    text-align: center;
    font-size: xx-large;
    font-weight: bold;
}


/* about the web app*/

.about {
    text-align: center;
    font-style: normal;
    font-weight: lighter;
    font-size: large;
}


/* List of games on the introduction page */

.list-of-games {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: medium;
    font-weight: lighter;
}

.navigation-bar {
    text-align: center;
    font-weight: light;
    background-color: whitesmoke;
    padding: 1rem;
}

.links {
    color: #7c3aed;
    text-decoration: none;
}

.about-me {
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: grey;
}


/* isTriangle.html page */

.angle-input {
    display: block;
    margin: 4rem auto;
    padding: 0.5rem;
    border-radius: 2.5rem;
}

#is-triangle-btn {
    border: none;
    margin: 1rem auto;
    background-color: green;
    color: white;
    font-size: large;
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem;
    display: block;
}

#output {
    padding: 2rem;
    text-align: center;
    font-weight: bold;
    font-size: large;
    color: #7c3aed;
}


/* Triangle Quiz */

.quiz-form {
    margin: 5rem auto;
    text-align: center;
}

.options {
    font-weight: lighter;
    font-size: medium;
    color: green
}


/* Triangle quiz questions */

.ques {
    color: #7c3aed;
    font-weight: light;
    font-size: medium;
}

#submit-answer-btn {
    border: none;
    margin: 1rem auto;
    background-color: #7c3aed;
    color: white;
    font-size: large;
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    display: block;
}

.output {
    text-align: center;
    font-weight: bold;
    font-size: xx-large;
}


/* Footer */

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: black;
}

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

.footer-list {
    margin: 1rem;
}

a,
li {
    display: inline;
    padding: 0.5rem;
    color: black;
}