/* ================================================== MULTIPLE */

/* Little text windows */

.text-screen {
    padding: 13px;
    background: #005;
    color: #fff;
    border: 5px solid #00114E;
    border-radius: 15px;
}

/* Styling with shadow */

.shadow {position: relative}

.shadow > * {
    position: relative;
    z-index: 2;
}

.shadow::before, .shadow::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: absolute;
    bottom: 0; left: 0;
    z-index: 1;
}

.shadow::after {
    height: 60px;
    bottom: -15px;
    z-index: 0;
}

/* Sections */

section > h2 {
    font-size: 20px;
    text-transform: uppercase;
}

.section-style {
    width: 100%;
    padding: 30px;
    color: #fff;
    border-radius: 20px;
}

.section-style::before, .section-style::after {background: var(--section-bg)}
.section-style::after {background: var(--shadow-color)}

/* ================================================== GROUPS */

.left, .center, .right {
    height: 100%;
    padding: 50px 0 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0;
}

.left {
    width: 300px;
    left: 50px;
}

.center {
    width: calc(var(--main-width) / 2.5);
    left: 50%;
    transform: translateX(-50%);
}

.right {
    width: 300px;
    right: 50px;
}

/* ================================================== POST-ITS */

.postit {
    position: absolute;
}

#postit-h2o {
    width: 170px;
    bottom: 50px; right: 0;
}

#postit-o2 {
    width: 170px;
    bottom: 30%; left: 20px;
    transform: rotate(12deg);
}

#postit-h2 {
    width: 170px;
    top: 60px; left: 40%;
    transform: rotate(-5deg);
}

#postit-ch4 {
    width: 170px;
    top: 29%; right: -10px;
    transform: rotate(2deg);
}

/* ================================================== STABILITY */

#stability-gauge-container {
    width: 100%;
    margin-bottom: 10px;
    background: #005;
    border: 5px solid #00114E;
    border-radius: 15px;
    display: flex;
}

#stability-gauge {
    height: 15px;
    background: var(--stability);
    border-radius: 15px;
    transition: width .1s;
}

/* ================================================== SCORE */

#score {
    margin-top: 20px;
}


/* ================================================== WANTED MOLECULE */

#wanted-container {
    display: flex;
    flex-direction: column;
}

#wanted {
    width: 240px;
    height: 240px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wanted > div {
    display: flex;
}

#wanted i {
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

#wanted-name {
    color: var(--black);
    font-style: italic;
    font-weight: 600;
    position: absolute;
    top: 240px; left: 50px;
}

/* ================================================== MESSAGE BOX */

#message-box {
    padding: 30px;
}