a:hover, a:focus, a:visited {
    color: rgb(236, 141, 157);
    font-weight: 50px;
}

body {
    align-items: center;
    background-image: url("https://img.freepik.com/free-vector/colorful-abstract-background_23-2148481496.jpg");
    background-position:center;
    background-repeat: round;
    background-size: 1000px;
    border-left: 200px solid #235cc5;
    border-right: 200px solid #235cc5;
    display: flex;
    flex-direction: column;
    font-family: 'Londrina Solid', sans-serif;
    margin: 0;
    min-height: 800px;
}

h2 {
    font-family: Georgia;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

h1 {
    font-family: 'Titan One', serif;
    color: #235cc5;
    font-size: 3em;
    margin-bottom: -20px;
}

img {
    padding-bottom: 6px ;
    padding-left: 390px;
    /* height: 40%; */
    width: 30%;

}

ul, li {
    display: block;
    list-style: none;
    padding-inline-start: 0;
}

.question-box {
    align-items: center;
    background-color: #235cc5;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 1.7em;
    margin-bottom: 16px;
    padding: 20px 60px 20px 60px;
    width: 70%;
}

.answers-box, .multiple-choice {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
}

/* .binary {
    display: inline-flex;
    grid-template-rows: 100%;

} */

.answers-box > li, .multiple-choice > li {
    border: 2px solid #fff;
    border-radius: 16px;
    text-align: center;
    margin: 6px;
    padding: 6px;
    transition: transform .15s;
}

.answers-box > li:hover, 
.multiple-choice > li:hover {
    transform: scale(1.1);
}

.possible:hover{
    background-color: yellowgreen;
    cursor: pointer;
}

.green {
    background-color: green;
}

.red {
    background-color: #e23;
}

@media (min-width: 768px) and(max-width: 1279px){
    body {
     align-items: center;
    }
    main {
      width: 90%;
    }
    footer {
      grid-template-columns: repeat(2, 1fr);
    }
@media screen {
    
}
}