.alert{
    width: 50%;
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.alert .detach{
    color:  yellow;
}

.alert > .content{
    padding: 3rem;
    color: white;
    background-color: #006833;
    border-radius: 40px 4px 40px 4px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.alert > .content > h1{
    margin-bottom: 1rem;
    text-align: center;
}

.alert > .content > p{
    margin-bottom: 1rem;
    font-size: 1.1em;
}

.alert > .content > button{
    display: block;
    margin: 2rem auto 0rem auto;
    width: 150px;
    padding: 0.5rem 0rem;
    border: 1px solid white;
    border-radius: 20px;
}

@media(max-width: 800px) {
    .alert{
        width: 80%;
    }
}

@media(max-width: 470px) {
    .alert{
        width: 90%;
    }
    .alert > .content > p{
        font-size: 0.9em;
    }
}