html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #111111;
    margin: 0;
    overflow-x: hidden;
}

canvas {
    border-radius: 100%;
}

.Top {
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Middle {
    margin: 0% 37%;
    align-self: center;
    background-color: rgba(14, 14, 14, 0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
}

.Bottom {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.button_style_1 {
    margin: 10px;
    width: 200px;
    height: 50px;
    background-color: rgba(14, 14, 14, 0.8);
    border: none;
    border-radius: 0.5em;
    color: white;
    cursor: pointer;
}

.button_style_1 span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button_style_1 span:after {
    content: "\00bb";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button_style_1:hover span {
    padding-right: 25px;
    color: orangered;
}

.button_style_1:hover span:after {
    opacity: 1;
    right: 0;
    color: orangered;
}
