@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primaryColor: #874BFF;
    --gold: #fadf6e;
    --myBlack: #000;
    --inputBack: #eee;
    --placeHolderColor: #6e6e6e;
    --green: #5cb85c;
}

::selection {
    background: var(--primaryColor);
    color: white;
}

::placeholder {
    color: var(--placeHolderColor);
}

/* reset css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    scrollbar-width: none;
}

a {
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid var(--primaryColor);
    background-color: white;
    color: var(--primaryColor);
    min-width: 300px;
    font-weight: bold;
    transition: all .4s ease-in-out;
}

a:hover {
    background-color: var(--primaryColor);
    color: white;
}

span {
    font-weight: bold !important;
}


/* header */
.header {
    height: 12vh;
    padding: 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    background: white;
    z-index: 999;
}

.logo {
    color: var(--primaryColor);
}

/* helpers */
.bigText {
    font-size: 2rem;
    font-weight: 800;
}

.midText {
    font-size: 1.6rem;
    font-weight: 600;
}

.normalText {
    font-size: 1.3rem;
    font-weight: 500;
}

.smallText {
    font-size: 1rem;
    font-weight: 400;
}

.textCenter {
    text-align: center;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt50 {
    margin-top: 50px;
}

.mb50 {
    margin-bottom: 50px;
}

.mt100 {
    margin-top: 100px;
}

.pdHead {
    padding-top: 20vh;
}

.pdInline {
    padding-inline: 3%;
}

.centerForced {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shadow {
    box-shadow: 0px 4px 4px 2px rgba(0,0,0,0.25);
}