@import url('https://fonts.googleapis.com/css2?family=Mooli&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,700&display=swap');

.exo-2 {
  font-family: "Exo 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: italic;
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Mooli', sans-serif;
}

:root {
    /* navbar.css */
    --navbar-background: rgba(0, 0, 0, 0.5);
    --navbar-color: #ffffff;

    /* header.css */
    --background-main1: #009999;
    --background-main2: #efffff;
    --main-color: #eeeeee;
}
html {
     overflow-x: hidden;
}

.error-message {
    color: red;
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 5px;
    display: inline-block;
}





/************** buttons ***************/

.button-33 {
    background-color: #cfe5f1;
    border-radius: 100px;
    box-shadow: rgba(44, 111, 187, 0.2) 0 -25px 18px -14px inset,rgba(44, 111, 187, .15) 0 1px 2px,rgba(44, 111, 187, .15) 0 2px 4px,rgba(44, 111, 187, .15) 0 4px 8px,rgba(44, 111, 187, .15) 0 8px 16px,rgba(44, 111, 187, .15) 0 16px 32px;
    color: #0C2D4A;
    cursor: pointer;
    display: inline-block;
    font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-33:hover {
    box-shadow: rgba(44, 111, 187, .35) 0 -25px 18px -14px inset,rgba(44, 111, 187, .25) 0 1px 2px,rgba(44, 111, 187, .25) 0 2px 4px,rgba(44, 111, 187, .25) 0 4px 8px,rgba(44, 111, 187, .25) 0 8px 16px,rgba(44, 111, 187, .25) 0 16px 32px;
    transform: scale(1.05) rotate(-2deg);
}

.button-33:active {
    transform: scale(1.35) rotate(-2deg);
}

.button-87 {
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px rgb(44, 111, 187);
    background-image: linear-gradient(45deg, #373B44 0%, #4286f4  51%, #373B44  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-87:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.button-87:active {
    transform: scale(0.95);
}