#tutorial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.681);
    margin: 0;
    padding: 0;
    z-index: 10000;
}

.tutorial-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    max-width: 90vw;
    max-height: 90vh;
    padding: 20px 35px;
    background-color: #e8e8e8;
    box-sizing: border-box;
    border: 4px solid #171717;
    border-radius: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    overflow-x: hidden;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #0b5d00;
    border-radius: 5px;
    padding: 1px;
    margin: 15px 0;
}

.tutorial-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#tutorial h1 {
    font-size: 33px;
    font-family: Calibri, sans-serif;
    letter-spacing: 1.1px;
    color: #171717;
    text-align: center;
    margin: 10px 0;
}

.tutorial-icon-container i {
    font-size: 40px;
    color: #121212;
}

.tutorial-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 90px;
}

#tutorial p {
    font-size: 20px;
    font-family: Calibri, sans-serif;
    text-align: justify;
    color: #313131;
    margin: 0;
}

#tutorial-button {
    width: 140px;
    min-height: 50px;
    background-color: #0b5d00;
    transition: background-color 0.3s;
    border: rgb(28, 28, 28) 3px solid;
    border-radius: 45px;
    margin: 5px auto 0 auto;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

#tutorial-button p {
    color: #e8e8e8;
    font-size: 27px;
    font-family: Calibri, sans-serif;
    text-align: center;
    font-weight: bold;
}

#tutorial-button:hover {
    background-color: #108800;
    border: rgb(28, 28, 28) 3px solid;
}