* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.great-vibes-regular {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}


body {
    background-image: linear-gradient(#10002b, #3c096c);
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 100vh;
    text-align: center;
}

.petal {
    width: 100px;
    height: 100px;
    background: hsla(274, 100%, 33%, 1);

    background: linear-gradient(0deg, hsla(274, 100%, 33%, 1) 0%, hsla(358, 78%, 62%, 1) 100%);

    background: -moz-linear-gradient(0deg, hsla(274, 100%, 33%, 1) 0%, hsla(358, 78%, 62%, 1) 100%);

    background: -webkit-linear-gradient(-50deg, hsla(274, 100%, 33%, 1) 0%, hsla(358, 78%, 62%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#5E00A8", endColorstr="#EA5459", GradientType=1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.container {
    display: grid;
    grid-template-columns: 100px 100px;
    grid-template-rows: 100px 100px auto;
    position: relative;
    /* height: 100%;  */
}



.one {
    transform: rotate(180deg);
}

.two {
    transform: rotate(270deg);
}

.three {
    transform: rotate(90deg);
}

.circle {
    height: 50px;
    width: 50px;
    background: hsla(358, 78%, 62%, 1);

    background: radial-gradient(circle, hsla(358, 78%, 62%, 1) 3%, hsla(300, 63%, 42%, 1) 61%);

    background: -moz-radial-gradient(circle, hsla(358, 78%, 62%, 1) 3%, hsla(300, 63%, 42%, 1) 61%);

    background: -webkit-radial-gradient(circle, hsla(358, 78%, 62%, 1) 3%, hsla(300, 63%, 42%, 1) 61%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#EA5459", endColorstr="#AF28AF", GradientType=1);
    border-radius: 50%;
    position: absolute;
    top: 75px;
    left: 75px;
}

.stem {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -2;
    width: 200px;
    margin-top: -100px;

}

.text {
    font-size: 4rem;
    color: white;
    text-align: start;
    font-family: "Great Vibes", cursive;
    width: 50%;
    height: 10vh;
    position: fixed;
    top: 5vh;
    left: 25%;
    display: flex;
    justify-content: center;
    /* display: none; */
}

.projects {
    font-size: 4rem;
    color: white;
    text-align: start;
    font-family: "Great Vibes", cursive;
    width: 50%;
    height: 10vh;
    position: fixed;
    top: 5vh;
    left: 25%;
    display: flex;
    justify-content: center;
    /* display: none; */
}


.aboutMe {
    font-size: 4rem;
    color: white;
    text-align: start;
    font-family: "Great Vibes", cursive;
    width: 50%;
    height: 10vh;
    position: fixed;
    top: 5vh;
    left: 25%;
    display: flex;
    justify-content: center;
    /* display: none; */
}


.contact {
    font-size: 4rem;
    color: white;
    text-align: start;
    font-family: "Great Vibes", cursive;
    width: 50%;
    height: 10vh;
    position: fixed;
    top: 5vh;
    left: 25%;
    display: flex;
    justify-content: center;
    /* display: none; */
}



/* home text animations */
.text path {
    stroke-dasharray: 478;
    stroke-dashoffset: 478;

}

.show path {
    animation: dash 3s linear forwards;
    /* transition: fill 0.3s !important; */
}

#one:hover~.text {
    display: block;

}



/* projects text animations */
.projects path {
    stroke-dasharray: 260;
    stroke-dashoffset: 260;

}

.projects.show path {
    animation: dash 3s linear forwards;
    /* transition: fill 0.3s !important; */
}

#two:hover~.projects {
    display: block;

}

@keyframes dash {
    50% {
        stroke-dashoffset: 0;
        fill: transparent;

    }

    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    100% {
        fill: #fff
    }
}



/* about me text animations*/
.aboutMe path {
    stroke-dasharray: 468;
    stroke-dashoffset: 468;

}

.aboutMe.show path {
    animation: dash 3s linear forwards;
    /* transition: fill 0.3s !important; */
}

#three:hover~.aboutMe {
    display: block;

}

@keyframes dash {
    50% {
        stroke-dashoffset: 0;
        fill: transparent;

    }

    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    100% {
        fill: #fff
    }
}




/* contact text animations*/
.contact path {
    stroke-dasharray: 232;
    stroke-dashoffset: 232;

}

.contact.show path {
    animation: dash 3s linear forwards;
    /* transition: fill 0.3s !important; */
}

#four:hover~.contact {
    display: block;

}

@keyframes dash {
    50% {
        stroke-dashoffset: 0;
        fill: transparent;

    }

    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }

    100% {
        fill: #fff
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.disclaimer.fade-out {
    animation: fadeOut 2s forwards;
}

.mainText {
    position: fixed;
    top: 5vh;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}

.one:hover {
    transform: scale(1.1) rotate(180deg);
    transition: 0.5s;
    box-shadow: 0 0 10px 10px hsla(274, 100%, 33%, 1);
}

.two:hover {
    transform: scale(1.1) rotate(270deg);
    transition: 0.5s;
    box-shadow: 0 0 10px 10px hsla(274, 100%, 33%, 1);
}

.three:hover {
    transform: scale(1.1) rotate(90deg);
    transition: 0.5s;
    box-shadow: 0 0 10px 10px hsla(274, 100%, 33%, 1);
}

.four:hover {
    transform: scale(1.1) rotate(0deg);
    transition: 0.5s;
    box-shadow: 0 0 10px 10px hsla(274, 100%, 33%, 1);
}

.disclaimer {
    position: fixed;
    background-image: linear-gradient(#10002b, #3c096c);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 1000;
    color: white;
}