body {
    font-family: josefinsans;
    text-align: center;
    background-image: url("../images/pink024.jpg");
}

@font-face {
    font-family: josefinsans;
    src: url(Josefin_Sans/static/JosefinSans-Regular.ttf);
}

#warning {
    font-size: 40px;
    background-color: rgb(230, 211, 193);
    color: rgb(0, 0, 0);
    border: 4px solid rgb(48, 27, 19);
    border-radius: 10px;
    padding: 7px;
    max-width: 30%;
    margin: auto;
    position: fixed;
    top: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
}

button {
    font-size: 30px;
    background-color: rgb(230, 211, 193);
    color: rgb(0, 0, 0);
    border: 4px solid rgb(48, 27, 19);
    border-radius: 10px;
    padding: 7px;
    max-width: 30%;
    margin: auto;
    position: fixed;
    top: 520px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-duration: 0.4s;
}

button:hover {
    background-color: rgb(48, 27, 19);
    color: rgb(255, 255, 255);
}