body {
    margin: 0;
    padding: 0;
    right: 0;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

:root {
    --bgColor: rgb(247, 247, 247);

    --eliteBlue: #0276AF;
    --eliteSky: rgb(36, 176, 255);
    --eliteOrange: #DDAA04;
    --eliteRed: #EE4447;
}
#body-desktop, #body-mobile {
    width: 100%;
    min-height: 100vh;
    background-color: white;
}

.button-black {
    background-color: #000000;
    border: 2px solid #1A1A1A;
    border-radius: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-width: 0;
    outline: none;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;

}

.button-green {
    background-color: #396964;
    border: 2px solid #396964;
    border-radius: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-width: 0;
    outline: none;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;

}

.button-white {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-width: 0;
    outline: none;
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;

}
.button-black:hover, .button-white:hover, .button-green:hover {
    opacity: 0.8;
}

