* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Roboto, sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 10px;
}

.center-image {
    max-width: 100%;
    height: auto;

}

.message {
    margin: 20px;
    font-size: 18px;
    font-weight: 400;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 15px 20px;
    background-color: #83d5c2;
    color: rgb(51, 51, 51);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #50d7b8;
}