a:link {
    color: white;
}

a:visited {
    color: white;
}

a:hover {
    color: grey;
}

a:active {
    color: grey;
}

.button_container {
    display: flex;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: black;
    background-color: lightgrey;
}

h2 {
    font-size: 64px;
    margin: 0;
}

.button {
    width: 400px;
    margin: 1em auto 2em auto;
    font-size: 48px;
    border-radius: 20px;
    text-align: center;
    padding: 0.2em;
    background-color: #aaa;
}

.nav {
    color: white;
    background-color: #5b5254;
}

.nav__menu {
    display: flex;
    list-style-type: none;
    padding: 1em;
    margin: 0;
}

@media only screen {
    .nav__item__link {
        padding: .75em .4em;
        text-decoration: none;
        font-size: 2em;
    }
}
@media only screen and (max-width: 768px) {
    .nav__item__link {
        padding: .75em .4em;
        text-decoration: none;
        font-size: 2em;
    }
}
@media only screen and (max-width: 500px) {
    .nav__item__link {
        padding: .75em .4em;
        text-decoration: none;
        font-size: 2em;
    }
}

.footer {
    color: white;
    background-color: #5b5254;
}

.game {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
}

.title {
}

.title__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title h1 {
    font-size: 100px;
    margin: 4rem auto;
}

.title__bincontainer {
    display: flex;
    justify-content: center;
}

.button__play {
}

.instructions {
}

.instructions__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructions__text {
    display: flex;
    justify-content: center;
    margin: 1rem auto 4rem auto;
    font-size: 2rem;
}

.instructions h2 {
    font-size: 70px;
    margin: 4rem auto 1rem auto;
}

.instructions__bincontainer {
    position: relative;
}

.tap {
    position: absolute;
    left: 180px;
    top: 100px;
    height: min-content;
}

.button__ok {
    margin-top: 2em;
}

.choice {
    padding: 1em;
}

.choice h2 {
    margin: .5em;
}

.choice__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choice__bincontainer {
    margin-top: 2em;
    margin-bottom: 2em;
}

.explanation {
    margin: 2em;
}

.explanation h3 {
    margin-bottom: 0;
    font-size: 1.1em;
}

.explanation__category_correct {
    color: red;
}

.explanation__category_incorrect {
    color: darkgrey;
}

.explanation__category_header {
    color: black;
    font-size: 1.2em;
    margin-bottom: 0;
}

.explanation__imagecontainer {
    margin: 2em;
    display: flex;
    justify-content: center;
}

.explanation__bin {
    margin-right: 1em;
    height: 100%;
}

.explanation__item {
}

.button__next {
}

.congratulations {
}

.congratulations__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.congratulations h2 {
    font-size: 70px;
    margin: 4rem auto;
}

.congratulations__text {
    font-size: 2rem;
    margin: 4rem auto 2rem auto;
}

.button__yeah {
}

.about {
    padding: 2em;
}

.about h2 {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5em;
    font-size: 70px;
}

.about a:link {
    color: darkslategray;
}

.about a:visited {
    color: darkslategray;
}

.about a:hover {
    color: grey;
}

.about a:active {
    color: grey;
}

.about__line {
    display: flex;
    margin-bottom: 2em;
}

.about__image {
    width: 200px;
    box-shadow: 5px 5px 20px black;
}

.about__kookaimage {
    margin-left: 20px;
    margin-right: 20px;
    width: 160px;
    height: 152px;
}

.about__text {
    width: 65%;
    align-self: center;
    margin-left: 2em;
}

.button__aboutok {
}    
    
.bin {
}

.bin_recycle {
}

.bin_greenwaste {
}

.bin_garbage {
}

.bindiv {
    display: inline-block;
    position: relative;
}

.wrong {
    position: absolute;
    left: 0px;
    top: 30px;
}

.item__image {
    background-color: darkolivegreen;
    border-radius: 20px;
    padding: 10px;
    width: 280px;
    height: 280px;
    margin: .5em;
}

.item__text {
    font-size: 48px;
}

.map__image {
    display: flex;
    margin: 0 auto;
}
