* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* body {
    background-image: url(Voiceimages/bubbles.jpg);
    min-height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} */

#main #buttons .orb {
    height: 400px;
    width: auto;
}

#buttons {
    height: 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* #buttons #start {
    margin-right: 2rem;
} */

#start {
    background-color: #e452e2;
    outline: none;
    border: none;
    padding: .5rem 2rem;
    color: rgb(253, 237, 237);
    box-shadow: 0 0 0 1px rgb(12, 12, 12);
    border-radius: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 2rem 0 0 0;
}

#stop {
    background-color: #e452e2;
    outline: none;
    border: none;
    padding: .5rem 2rem;
    color: rgb(253, 237, 237);
    box-shadow: 0 0 0 1px rgb(12, 12, 12);
    border-radius: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 2rem 0 0 0;
}

@media(max-width: 700px) {
    #buttons {
        height: 300px;
        width: 300px;
        display: flex;
        flex-direction: column;
        text-align: center;
        position: absolute;
        top: 40%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    #buttons #start {
        background-color: #e452e2;
        outline: none;
        border: none;
        padding: .5rem 2rem;
        color: rgb(253, 237, 237);
        box-shadow: 0 0 0 1px rgb(12, 12, 12);
        border-radius: .5rem;
        font-size: 1rem;
        cursor: pointer;
        margin: 5rem 0 0 0;
    }
    #buttons #stop {
        background-color: #e452e2;
        outline: none;
        border: none;
        padding: .5rem 1.8rem;
        color: rgb(253, 237, 237);
        box-shadow: 0 0 0 1px rgb(12, 12, 12);
        border-radius: .5rem;
        font-size: 1rem;
        cursor: pointer;
        margin: 2rem 0 0 0;
    }
}