/* Color Palette */
:root {
    --main: #E2FF00;
    --sub: #FFF86F;
    --red: #F24992;
    --dark: #272E1C;
    --white: #ffffff;
    --black: #000000;
}

/* Snack Box Font */
@font-face {
    font-family: 'Snack Box';
    src: url('fonts/Snack Box.otf') format('opentype'),
         url('fonts/Snack Box.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    font-family: 'Snack Box', sans-serif;
    color: var(--white);
    padding: 20px;
}

h1 {
    color: var(--main);
    margin-bottom: 20px;
}

h2 {
    color: var(--sub);
    margin-bottom: 15px;
}

p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 10px;
}

a {
    color: var(--main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sub);
}
