:root {
    --accent: #3CB9FC;
    --light: #B537F2;
    --main: #A8249C;
    --dark: #190671;
    --accent2: #F5CB43;

}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

h1 {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h3 {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h4 {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h5 {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.wheatbg{
    background-color: wheat;
    color: black;
}

.section {
    min-height: 100vh;
}

.standardimg {
    width: 100%;
    height: auto;
}

.cardstyle {
    border-radius: 10px;
    border: 1px solid transparent;
    background-color: wheat;
    transition: 0.5s;
}


.cardstyletop {
    border-radius: 10px 10px 0 0;
}

.cardstylebot {
    border-radius: 0 0 10px 10px;
}

.cardstyle:hover {
    transform: translateX(-5px) translateY(-5px);
    box-shadow: 5px 5px black;
    border: 1px solid transparent;
    transition: 0.5s;
}

.deactivatedcard{
    filter: grayscale(1.0);
}


.hideori {
    opacity: 0;
}

.hidetillscroll {
    opacity: 0;
}


.fadefromleft1 {
    animation: 1s ease-in-out 0s 1 forwards slideInFromLeft;
}

.fadefromleft2 {
    animation: 1s ease-in-out 0.2s 1 forwards slideInFromLeft;
}

.fadefromleft3 {
    animation: 1s ease-in-out 0.4s 1 forwards slideInFromLeft;
}

.fadefromleft4 {
    animation: 1s ease-in-out 0.6s 1 forwards slideInFromLeft;
}

.fadefromtop1 {
    animation: 1s ease-in-out 0s 1 forwards slideInFromTop;
}

.fadefromtop2 {
    animation: 1s ease-in-out 0.2s 1 forwards slideInFromTop;
}

.fadefromtop3 {
    animation: 1s ease-in-out 0.4s 1 forwards slideInFromTop;
}

.fadefromtop4 {
    animation: 1s ease-in-out 0.6s 1 forwards slideInFromTop;
}

.fadein {
    animation: 1s ease-in-out 0s 1 forwards FadeIn;
}

.fadein2 {
    animation: 1s ease-in-out 0.2s 1 forwards FadeIn;
}

.fadein3 {
    animation: 1s ease-in-out 0.4s 1 forwards FadeIn;
}

.fadein4 {
    animation: 1s ease-in-out 0.6s 1 forwards FadeIn;
}

.fadeout {
    animation: 1s ease-in-out 0s 1 forwards FadeOut;
}

.fadetoright {
    animation: 1s ease-in-out 0s 1 forwards SlidetoRight;
}


@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes SlidetoRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }
}

@keyframes FadeOut {
    0% {
        opacity: 1;

    }

    100% {
        opacity: 0;

    }
}