* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-image: url("https://wallpaper.dog/large/962261.jpg");
    background-size: cover;
    height: 100vh;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;

    color: #FFFFFF;
}

.container {
    width: 550px;
    height: 550px;
    border-radius: 15px;
    box-shadow: 1px 1px 25px #eed88f;

    padding:115px 52px;
    background: #1F2937;
}

h1 {
    width: 354px;
    height: 80px;
    left: 52px;
    top: 115px;
    margin: 0;

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 40px;

    letter-spacing: -0.025em;
}

.diffcolor {
    color: #4ADF86;
}

p {
    width: 372px;
    height: 28px;
    left: 52px;
    top: 205px;
    margin: 10px 0 51px 0;

    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;

    color: #D5D4D8;
}

button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 17px 9px 15px;
    gap: 12px;
    margin-bottom: 35px;

    width: 191px;
    height: 42px;

    background: #10B981;

    border: none;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 6px;

    /* Text */
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;

    color: #FFFFFF;

    flex: none;
    order: 0;
    flex-grow: 0;
}

button:hover {
    border: solid 4px #79d1e7;
}

button:active {
    box-shadow: 0px 1px 4px #79d1e7;
    transform: translateY(2px);
}

hr {
    width: 446px;
    height: 0px;
    margin: 0;

    position: absolute;

    border: 1px solid #2F3E53;
}

.break {
    height: 35px;
}
.ans-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
}

#container1 {
    width: 211px;
    height: 39px;

    background: #273549;
    border-radius: 6px;
    padding: 4px;
    margin-top: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;

    text-align: center;

    color: #55F991;
}

#container2 {
    width: 211px;
    height: 39px;

    background: #273549;
    border-radius: 6px;
    padding: 4px;
    margin-top: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;

    text-align: center;

    color: #55F991;
}

footer {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 25px;

    position: absolute;
    bottom: 20px;
    left: 30px;
}

a:link, a:visited {
    color: #55F991;
    text-decoration: none;
}