
body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #181D26;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #181D26;
}

.img-bg {
    border-radius: 50px;
    box-shadow: 0 0 50px #5C88FF;
    border: 3px solid #000000;
    height: 750px;
    width: 750px;
}

h1 {
    color: #5C88FF;
}

.switch_btn_left,
.switch_btn_right {
    appearance: none;
    -webkit-appearance: none;

    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 10px;
    border: none;
    width: 350px;
    height: 70px;
}
.switch_btn_left:hover, .switch_btn_right:hover {
    cursor: pointer;
}
.switch_btn_left {
    background-image: url("/static/css/assets/ONE.png");
}

.switch_btn_right {
    background-image: url("/static/css/assets/TWO.png");
}