#container {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    font-family: Verdana;
}

#title {
    text-align: center;
}

#script-example {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
}

#script-example img {
    width: 35%;
    height: 35%;
}

#try-button {
    padding: 15px;
    background-color: rgb(194, 234, 221);
    border: 4px solid rgb(126, 204, 143);
    border-radius: 8px;
    transition: 0.3s;
    scale: 1.2;
}

#try-button:hover {
    background-color: rgb(168, 232, 191);
    border: 4px solid rgb(115, 203, 134);
    transition: 0.3s;
    scale: 1.4;
}

#try-container {
    height: 50px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#docs-button {
    padding: 10px;
    background-color: rgb(234, 229, 194);
    border: 4px solid rgb(208, 184, 113);
    border-radius: 8px;
    transition: 0.3s;
}

#docs-button:hover {
    background-color: rgb(222, 215, 162);
}