/* Basic reset and full height for body and html */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Roboto, sans-serif;
}

/* Centering content on the page */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 100vh;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.svg-container>img {
    width: 100%;
    height: 100%;
}
.alert-container {
    text-align: center;
    padding: 20px;
    max-width: 400px;
}

.alert-container h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.alert-container h2 {
    font-size: 18px;
    margin-bottom: 24px;
}

.alert-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
    background-color: #38668D; /* Change to your preferred color */
    border-radius: 4px;
    transition: background-color 0.3s;
}

.alert-button:hover {
    background-color: #39435E; /* Darker shade for hover effect */
    color: #ffffff;
}