.emergency {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 15px #ececec;
    padding: 15px 15px;
    border-radius: 15px;
    margin: 15px;
}

.emercall {
    color: #fff;
    text-shadow: 0 0 5px #fd0000;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
    margin-top: -8px;
    margin-bottom: 10px;
}

.emercall:hover {
    color: #fd0000;
    text-shadow: 0 0 10px #fff;

}

.botemer {
    background-color: #ff0000;
    box-shadow: inset 0 0 15px #fff;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 30px;
    width: 320px;
}

.botemer:hover {
    background-color: #fff;
    color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    transform: scale(1.2);
}