body{
    background: rgb(187, 16, 42);
    font: normal 15pt Comic Sans MS;
    display: flex;
    }
    h1{
        color: white;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    .container0 {

        flex-direction: column;
        text-align: center;
        margin: 10px;
        padding: 10px;
        border-radius: 10px;
        width: 200px;
    }
    .container {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin: 10px;
        padding: 10px;
        border: 2px solid white;
        border-radius: 10px;
        width: 200px;
    }
    h2 {
        color: white;
        margin: 5px; 
    }
    p{
        align-items: center;
        display: flex;
        justify-content: center;  
    }
    .button1{
        padding: 7px 15px;
        font-size: 15px;
        width: 150px;
        height: 30px;
        border-radius: 7px;
        margin: 0 2px;
    }
    .button2{
        padding: 5px 12px;
        font-size: 18px;
        width: 125px;
        height: 30px;
        border-radius: 7px;
        margin: 0 2px;
    }
    .button1, .button2 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: black;
        cursor: pointer;
    }
    .button1:visited, .button2:visited {
        color: black;
    }

    .button1, .button2 {
        background-color: #e0e0e0;
        border: 1px solid #999;
        box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    .button1:hover, .button2:hover {
        background-color: #cacaca;
    }
    .button1:active, .button2:active {
        box-shadow: none;
        transform: translateY(1px);
    }
