@import url('colors.css');


html,
body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-family:Arial,"Noto Sans",sans-serif;
    font-size: 16px;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
}

.note {
    text-align: center;
    width: 90%;
    max-width: 800px;
    height: 100px;
    font-size: 20px;
    padding-top: 70px;
}

    .note a {
        color: #C67A85 !important;
       /* text-decoration: none;*/
    }

        .note a:hover {
            color: #981E32 !important;
        }

@media (max-width: 767px) {
    .note {

}
}