html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html, body {
    height: 100%;
}
body {
    background-image: url(../img/soup.jpg);
    background-color: teal;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    font-size: 10px;
}
h1 {
    text-align: center;
    font-size: 3.2rem;
     font-family: "Almendra SC", serif;
     color: orange;
}
.butsec {
    padding: 10px 20px;
    background-color: antiquewhite;
    border: none;
    border-radius: 10%;
    cursor: pointer;
    font-size: 20px;
    font-family: fantasy;
    box-shadow: 2px 2px 8px black;
    transition: background-color 0.3s ease;
}
.butsec:hover {
 background-color: black;
 color: antiquewhite;
}
.rulestext {
    background-color: antiquewhite;
    border-radius: 10%;
    padding: 10px;
    margin-top: 10px;
    line-height: 1.2;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 1rem;
    box-shadow: 2px 2px 8px black;
    max-width: 400px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.hidden {
    display: none;
}
.rulessec {
    text-align: center;
}
#image {
    background-color: antiquewhite;
    width: 95%;
    max-width: 430px;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 2px 2px 8px black;
    padding: 5px;
    background-size: cover;
    background-position: center;
}
#art-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#container {
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    min-width: 310px;
    width: 66%;
    position: relative;
    text-align: center;
}
.sec2 {
    position: relative;
}
.sec2 p {
    position: absolute;
    /*right: 10px;*/
    /*top: 1px;*/
    top: -15px;
    right: 43%;
    color: antiquewhite;
    text-align: right;
    font-size: 14px;
    text-shadow: 1px 1px 4px black;
}

article h2 {
    margin: 10px 0 20px 0;
    color: antiquewhite;
    text-align: center;
    font-size: 20px;
    font-weight: bolder;
    line-height: 1.4em;
    text-shadow: 1px 1px 6px black;
}
li {
   width: 100%;
   display: block;
   background-color: antiquewhite;
   height: 35px;
   line-height: 35px;
   margin: 5px 0px;
   border-radius: 5px;
   padding: 0px 20px;
   box-shadow: inset 0 0 2px 0 black;
   background-position: bottom right;
   transition: all 0.5s ease-out 0s;
   color: black;
   font-weight: bold;
}
li:hover {
    cursor: pointer;
    background-color: aqua;
}
li.selected {
    background-color: blue;
}
li.right {
    background-color: gold;
    background-image: url(../img/right.png);
    background-position: center right;
    background-repeat: no-repeat;
}
li.wrong {
    background-color: red;
    background-image: url(../img/wrong.png);
    background-position: center right;
    background-repeat: no-repeat;
}
#submit {
    opacity: 0;
    display: block;
    margin-top: 5px;
    width: 100%;
    background-color: orange;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.5s ease-out 0s;
}
