* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* main color: #2400FF */

body {
    font-family: Arrial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
}

header {
    padding: 2% 3%;
    background-color: #ecebff;
    color: #2400FF;
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 #logo_img {
    width: 70px;
}


nav ul{
    display:flex;
    justify-content: space-between;
}

nav li {
    margin-left: 15px;
    list-style: none;
}






main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.indicators {
    margin: 0 auto;
    /* width: 80%; */
    display: flex;
    justify-content: center;
}
.indicators p{
    text-align: center;
    width: 7vw;
    font-size: 12px;
    padding: 5px 0;
    margin: 5px 5px;
    border: 1px solid black;
    border-radius: 5px;
}

h2, h3 {
    margin-top: 7px;
    text-align: center;
}

#options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.option {
    font-size: 20px;
    padding: 7px;
    margin: 7px;
    border-radius: 20px 0;
    transition: 200ms;
    
}

button:active {
    box-shadow: 0 0 20px #333;
    background-color: rgb(139, 139, 139);
    transform: scale(1.2) translateY(-8px);
}


#img_wellDone {
    position: relative;
}

#img {
    width: 95vw;
    height: 95vw;
    object-fit: cover;
    box-shadow: 0 0 20px #333;
    border-radius:25px;
    margin: 10px 2.5vw;
}

#comment_text {
    font-size: 50px;
    text-align: center;
    color: rgb(7, 99, 37);
    background-color: #ecebff;
    text-shadow: 0 0 50px #0c0a0a;
    display: block;
    position: absolute;
    top: 38%;
    width: 100%;
    
}

#next {
    visibility: hidden;
    font-size: 25px;
    padding: 10px;
    margin: 10px;
    border-radius: 0 100px 100px 0;
    transition: 200ms;
}



footer {
    text-align: center;
    color: #2400FF;
    background-color: #ecebff;
    padding: 1%;

    margin-top: auto;
}



@media screen and (min-width: 480px) { 

    header {
    padding: 1% 10%;
    }

    #logo_img {
        width: 90px;
    }
    
    nav li {
        font-size: 22px;
        margin-left: 22px;
    }



    main {
        margin-top: 30px;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .indicators {
        grid-column: 1/3;
    }

    .indicators p{
        width: 3vw;
        font-size: 18px;
        padding: 10px auto;
        margin: 5px 5px;
        border: 1px solid black;
    }

    #question{
        align-self: end;
        margin-left: 15%;
    }
    #question h2 {
        font-size: 32px;
    }
    #question h3 {
        font-size: 25px;
    }

    #options {
        align-self: start;
        margin-left: 15%;

    }
    .option {
        font-size: 25px;

    }

    #img_wellDone{
        align-self: center;
        grid-column-start: 2;
        grid-row: 2 / 4;
    }
   

    #img {
        margin: 0;
        width: 60vh;
        height: 60vh;
    }
    
    #comment_text {
        align-items: center;
        position: absolute;
        top: 38%;
        width: 60vh;
        background-color: #ecebff;
    }
}

