.apperancetitle {
    z-index: 10;
    width: 100%;
    text-align: center;
    font-size: 50px;
    color: #5E2A4A;
    position: relative;
    top: 120px;
}


.apperanceouter {
    background-color: #CCEAFD;
    color: #5E2A4A;

    position: relative;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 100px;
    margin-bottom: -50px;
}

.apperanceinner {
    text-align: center;
}

.buttons {
    position: relative;
    left: 50%;
    margin-left: -330px;
    width: 660px;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 35px;
}

@media (max-width: 700px) {
    .buttons {
        grid-template-columns: auto;
        grid-gap: 15px;
        width: 300px;
        margin-left: -150px;
    }
}

.apperanceinner button {
    width: 100%;
    height: 35px;
    border-radius: 0;
    border: 1px solid #5E2A4A;
    font-size: 24px;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}


.disable {
    background-color: white;
    color: #5E2A4A;
}

.disable:hover {
    background-color: #5E2A4A;
    color: white;
}

.enable {
    background-color: #5E2A4A;
    color: white;
}

#app {
    text-align: justify;
    display: inline-block;
    margin-top: 35px;
    width: 80%;
    max-width: 700px;
    min-height: 300px;
    border-radius: 20px;
    border: 1px solid #5E2A4A;
    background-color: white;
    padding: 20px;
}

#app span {
    display: block;
    width: 50%;
    font-size: 20px;
    line-height: 40px;
    float: left;
}

#app img {
    position: relative;
    border-radius: 20px;
    right: 0;
    bottom: 1px;
    max-width: 48%;
    max-height: 400px;
    margin-right: -50px;
    float: left;
}

@media (max-width: 1000px) {
    #app span {
        width: 100%;
    }

    #app img {
        position: static;
        width: 500px;
        left: 10%;
        right: auto;
        border-radius: 0px;
        bottom: auto;
        max-width: 100%;
        max-height: 100%;
        margin-right: auto;
    }
}
