/* Color Pallete */
:root {
    --pink: #FF4895;
    --blue: #2D42FF;
    --purple: #6E4FE9;
    --black: #13111A;
    --white: #FFFFFF;
    --light-grey: #B7B4C7;
    --dark-grey: #1D1A27;
    --grey: #302C3F;
}

/* Fonts */
@font-face {
    font-family: 'BankGothic';
    src: url(../fonts/spaceX/bankgothic-regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BankGothic';
    src: url(../fonts/spaceX/BankGothicLtBTLight.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'ThicBoi';
    src: url(../fonts/thicccBoy/THICCCBOI-Bold.woff2) format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'ThicBoi';
    src: url(../fonts/thicccBoy/THICCCBOI-Regular.woff2) format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ThicBoi';
    src: url(../fonts/thicccBoy/THICCCBOI-Thin.woff2) format('woff2');
    font-weight: 100;
    font-style: normal;
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ThicBoi', sans-serif;
}