:root {
    font-family: "Sahitya", "Indie Flower", serif;
    font-size: 1rem;
    --grey: #3a3c41;
    --cherry: #fab2c8;
    --petal: #fdd9e3;
    --jungle: #5aaf73;
    --wisteria: #80a4ed;
    --white: #efefef;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* <------------- Base Styles -------------> */
html {
    height: 100%
}

body {
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: white;
    color: var(--grey);
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.parallax {
    background-image: url('Assets/beach_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-attachment: fixed;
}

.paradox {
    background-color: var(--petal);
    background-image: url('Assets/bg_sketch.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-attachment: fixed;
}

.paramin {
    background-color: var(--petal);
    background-image: url('Assets/hearts_removed.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-attachment: fixed;
}

.paramax {
    background-image: url('Assets/universal_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    background-attachment: fixed;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}


.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.one {
    background-color: white;
    height: 70vh;
    padding: 1rem;
}


.stat-cord {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: color-mix(in srgb, var(--petal) 90%, var(--cherry) 10%);
    border: 1px solid var(--grey);
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}

.stat-card {
    padding-left: 2rem;
    border-left: 1rem solid var(--jungle);
    width: 40%;
}

img {
    width: 36vw;
    aspect-ratio: 4 / 3;
}

.bottom {
    width: 100%;
    height: 5vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.daily_note {
    padding: 2rem;
    border-radius: 1rem;
    width: 60vw;
    background-color: var(--petal);
}

.nameplate {
    font-family: "Sahitya", serif;
}

/* <------------- Font Styles -------------> */

h1 {
    font-family: "Sahitya", serif;
    font-size: 3.5rem;
}

p {
    font-family: "Indie Flower", cursive;
}

span {
    font-family: "Indie Flower", serif;
    color: var(--jungle)
}

.sahitya-regular {
    font-family: "Sahitya", serif;
    font-weight: 400;
    font-style: normal;
}

.sahitya-bold {
    font-family: "Sahitya", serif;
    font-weight: 700;
    font-style: normal;
}

.indie-flower-regular {
    font-family: "Indie Flower", cursive;
    font-weight: 400;
    font-style: normal;
}

/* <------------- Specific Styles -------------> */

.title {
    font-size: 3rem;
}

#cover {
    flex-direction: column;
}

.square {
    width: 30vw;
    aspect-ratio: 1 / 1;
}

.highlight {
    color: var(--jungle);
}

.intersecting {
    animation: fade 0.5s 0.2s both;
}


