@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Exo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Exo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Exo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Press+Start+2P&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --color-white: #EEEEEE;
    --color-black: #111111;
    --color-blue: #9BBEC7;
    --color-yellow: #FFB30F;
    --color-pink: #FE938C;
    --color-green: #BBDD95;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", serif;
    color: var(--color-black);

    background-color: var(--color-white);

    margin: 0;
}

h1, h2, h3 {
    font-family: "Space Mono", serif;
    margin: 0;
}

h4, h5 {
    font-family: "Exo", serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 30px;

    background-color: var(--color-blue);
}

header img {
    width: 15vw;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;

    position: fixed;
    width: 100%;
    height: 45px;
    bottom: 0;

    font-size: 25px;

    background-color: var(--color-green);
}

nav a {
    all: unset;
}

nav .nav-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 10px;
}

nav .nav-button i {
    font-size: 20px;
}

.plus-icon {
    aspect-ratio: 1 / 1;
    height: calc(125% - 5px);
    text-align: center;
    align-content: center;
    transform: translateY(-10px);

    background-color: var(--color-white); /*hsl(from var(--color-green) h s calc(l - 5));*/
    color: hsl(from var(--color-green) h s calc(l - 20));

    border: outset 5px hsl(from var(--color-green) h s calc(l - 10));

    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);

    border-radius: 50%;
}

/*STYLING FOR TRACKER ALREADY FILLED IN SECTION*/

section.alreadyFilled {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

section.alreadyFilled div.buttons {
    display: flex;
    gap: 20px;

    padding: 20px;
}

.no-button {
    all: unset;

    padding: 10px 20px;

    background-color: var(--color-pink);
    border-radius: 10px;
}

.yes-button {
    all: unset;

    padding: 10px 20px;

    background-color: var(--color-green);
    border-radius: 10px;
}

.insights-button, .diary-button {
    all: unset;

    padding: 10px 20px;

    margin-bottom: 10px;

    background-color: var(--color-blue);
    border-radius: 10px;
}