@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
    font-family: 'Roboto';
    opacity: 0;
}

#all_page {
    position: fixed;
    width: 1920px;
    height: 1080px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#logo {
    background-image: url(../img/minilogo.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #891dff;
    color: #fff;
    box-shadow: 0 0 10px #00000075;
    display: block;
    border-radius: 45px;
    height: 29px;
    width: 100px;
    margin: 0 auto;
    transform: translateX(250%);
}

#answers {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(2);
}

.answer_container {
    position: relative;
    display: block;
    height: 50px;
    width: 750px;
    margin: 10px auto;
}

.percentage {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 17px;
    line-height: 30px;
    background-color: #891dff;
    color: #fff;
    width: 80px;
    border-radius: 30px;
    text-align: right;
    padding: 0 12px;
    height: 30px;
    z-index: 5;
    box-shadow: 0 0 10px #00000038;
    transform: translateX(0px);
    transition: all ease 0.2s;
}

.answer_text_container {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 40px;
    font-size: 30px;
    width: calc(90% - 55px);
    line-height: 40px;
    text-align: left;
    padding-left: 55px;
    border-radius: 60px;
    z-index: 9;
    box-shadow: 0 0 10px #00000038;
    overflow: hidden;
    background-color: #fff;
}

.answer_text {
    position: absolute;
    text-align: center;
    top: 0;
    left: 50px;
    height: 100%;
    width: calc(100% - 50px);
    z-index: 8;
    overflow: hidden;
}

.answer_per {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    height: 100%;
    background-color: #00ff89;
    background: linear-gradient(90deg, rgba(0, 255, 137, 1) 0%, rgba(233, 255, 0, 1) 100%);
    z-index: 7;
    transition: all ease 0.2s;
}

.circle_letter {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    background-color: #891dff;
    color: #fff;
    z-index: 10;
    box-shadow: 0 0 10px #00000075;
}

#answer_header {
    font-size: 24px;
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 10px #00000075;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 45px;
    max-width: 720px;
    overflow: hidden;
}

#instructions {
    font-size: 16px;
    background-color: #891dff;
    color: #fff;
    box-shadow: 0 0 10px #00000075;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 45px;
    max-width: 720px;
    margin: 16px;
    overflow: hidden;
    width: auto;
    margin-bottom: 0;
}

.style1 #instructions,
.style1 #logo,
.style1 .circle_letter,
.style1 .percentage {
    background-color: #fa3042;
}

.style1 .answer_per {
    background-color: rgba(108, 118, 253, 1);
    background: linear-gradient(90deg, rgba(108, 118, 253, 1) 0%, rgba(129, 218, 253, 1) 100%);
}

.style2 #instructions,
.style2 #logo,
.style2 .circle_letter,
.style2 .percentage {
    background-color: #383838;
}

.style2 .answer_per {
    background-color: rgb(120, 120, 120);
    background: linear-gradient( 90deg, rgb(120, 120, 120) 0%, rgb(173, 172, 172) 100%);
}

.style3 #instructions,
.style3 #logo,
.style3 .circle_letter,
.style3 .percentage {
    background-color: #fffe00;
    color: #000;
}

.style3 .answer_per {
    background-color: rgb(243, 0, 224);
    background: linear-gradient( 90deg, rgb(243, 0, 224) 0%, rgb(255, 117, 251) 100%);
}

.style3 #logo {
    background-color: #0001ff;
    filter: invert(100%);
}