body {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#phone {
    margin: 5px;

    width: calc(50vh - 10px);
    height: calc(100vh - 10px);

    display: flex;
    flex-direction: column;
}

#phone-top {
    background: #151515;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    width: 100%;
    height: 50px;

    display: flex;
    flex-direction: row;
}

#speaker {
    background: #3b3b3b;
    align-self: center;

    border-radius: 10px;

    margin: auto;
    width: 75px;
    height: 20px;
}

#middle {
    display: flex;
    flex-direction: row;

    flex-grow: 1;
}

#content {
    display: inline-block;
    width: calc(100% - 30px);
    height: 100%;
    border: none;
}

.phone-side {
    display: inline-block;
    width: 15px;
    height: 100%;
    background: #151515;
}

#phone-bottom {
    background: #151515;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    width: 100%;
    height: 75px;

    display: flex;
    flex-direction: row;
}

#home-button {
    background: #3b3b3b;
    align-self: center;

    border-radius: 25px;

    margin: auto;
    width: 50px;
    height: 50px;
}

@media only screen and (max-width: 600px) {
    #phone {
        width: 100vw;
        margin: 0;
    }
    #content {
        border: none;
    }
    .phone-item {
        display: none !important;
    }
    .phone-side {
        width: 0;
    }
}
