body {
    font-family: workbench, sans-serif;
    margin: 0;
    padding: 0;
}

#container {
    padding-top: 12.5%;
    top: 50%;
    width: 90%;
    position: relative;
    left: 50%;
    margin-left: -45%;
    text-align: center;
}

#title {
    font-size: 3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
}

#container2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#message {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

#message p {
    margin: 0.5rem 0;
}

#message a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

#message a:hover {
    text-decoration: underline;
}

@media (max-width: 750px) {
    #container {
        width: 95%;
        margin-left: -47.5%;
    }
    
    #title {
        font-size: 2rem;
    }
    
    #message {
        font-size: 1rem;
    }
}