* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    min-height: 100%;
    background-color: #fff;
    background-image: url("../images/index-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    color: #000000;
    font-family: "Arial", sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 15px;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #474b3f;
}

.fullHeight {
    min-height: 90vh;
}

.container {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    padding: 10px 15px;
}
.message-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20%;
}
.message-wrapper h2{
    font-size: 40px;
}
.message-wrapper p {
    font-size: 20px;
}
#button {
    position: relative;
    background-color: #83ca97;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    border-radius: 8px;
    margin: 0;
    width: fit-content;
    box-shadow: 0px 2px 8px 1px rgba(0, 0, 0, 0.2);
    display: block;
    color: #fff;
}


@media (max-width: 850px) {
    html {
        background-image: url("../images/bg-wap.png");
        background-size: cover;
        background-repeat: no-repeat;
        color: #000000;
        font-family: "Arial", sans-serif;
        font-weight: 300;
        text-align: center;
        font-size: 15px;
        box-sizing: border-box;
    }

    .container {
        width: 95% !important;
        margin: 0 auto;
    }
    .message-wrapper{
        align-items: center;
    }
   
}