body {
    background-color: #202122;

}

* {
    font-family: Caladea, Merriweather, serif;
    color: white;
}

.box {
    display: block;
    margin-top: 10rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    width: 40rem;
    background-color: #242527;
    padding: 2.8rem;
    border: .2rem solid;
    border-color: #343438;
    border-radius: 2.8rem;
}

.title {
    text-align: center;
    font-size: 1.4rem;
    color: white;
}

.text {
    display: block;
    text-align: center;
    margin-top: .2rem;
    font-size: 1rem;
    color: white;
}

.text_left {
    display: block;
    text-align: left;
    margin-top: .2rem;
    font-size: 1rem;
    color: white;
}

.button_location {
    margin-top: 1.5rem;
    text-align: center;
}

.button {
    padding: .5rem .8rem;
    font-weight: bold;
    font-size: 1.2rem;
    border: none;
    border-radius: 4rem;
    background-color: #EC2C8E;
    color: white;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.button:hover {
    background-color: #ff3ba0;
    transition: all .2s ease-in-out;
}


/*Mobile*/
@media only screen and (max-width: 800px) {
    .box {
        width: 20rem;
    }
}


/*Mobile*/
@media only screen and (max-width: 500px) {
    .box {
        width: 15rem;
    }

    .title {
        font-size: 1.1rem;
    }

    .text {
        font-size: .9rem;
    }

    .text_left {
        font-size: .9rem;
    }

    .button, .button_delete {
        padding: 0.2rem .5rem;
        font-size: .9rem;
    }
}


/*Mobile*/
@media only screen and (max-width: 400px) {
    .box {
        width: 12rem;
        padding: 1rem;
    }

    .title {
        font-size: .8rem;
    }

    .text {
        font-size: .7rem;
    }

    .text_left {
        font-size: .7rem;
    }

    .button {
        padding: 0.2rem .5rem;
        font-size: .7rem;
    }
}