@font-face {
    font-family: rocky;
    src: url(../fonts/RubikMoonrocks-Regular.ttf);
}

body {
    margin: 0vw;
    padding: 0vw;
    font-size: 2em;
    font-family: rocky, sans-serif;
}

#sectionOne {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
    background-image: radial-gradient(rgba(255, 255, 255, 1), rgba(34, 0, 255, 1));
    padding-bottom: 50vh;
    position: relative;
    z-index: 10;
}

.imageAndText {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 80%;
}

#bottomOfGrid {
    grid-column: 1 / span 3;
    margin-top: 2vh;
}

img {
    width: 100%;
}

h1 {
    width: 80vw;
}

#sectionTwo {
    display: flex;
    flex-direction: column;
    gap: 20vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(white, rgb(235, 90, 28));
    z-index: 9;
    padding-top: 50vh;
    padding-bottom: 100vh;
    position: relative;
    bottom: 20vh;
    clip-path: circle(98.2% at 50% 1%);
}

.growImage {
    width: 60vw;
    scale: 1;
    transition: scale 0.5s;
}

.growImage:hover {
    scale: 1.3;
}

#sectionTwo div, ol {
    width: 60vw;
}

#sectionTwo div img {
    border-radius: 3vw;
}

#sectionThree {
    display: flex;
    flex-direction: column;
    gap: 10vh;
    padding: 40vh 3vw;
    background-image: radial-gradient(white, rgb(228, 49, 201));
    z-index: 8;
    position: relative;
    bottom: 115vh;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 69% 92%, 24% 99%, 0 96%);
}

#imageGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
}

.spanTwo {
    grid-column: 2/4;
}

#hart {
    width: 30vw;
    position: absolute;
    top: 8vh;
    right: 3vw;
}

#felings {
    color: grey;
    text-align: right;
    letter-spacing: 5px;
    font-size: 2.5em;
}

#home1 {
    clip-path: polygon(100% 0, 100% 85%, 93% 100%, 0 100%, 0 5%);
}

#home2 {
    clip-path: polygon(50% 0%, 100% 6%, 99% 97%, 75% 100%, 25% 100%, 2% 97%, 0 0);
}

#home3 {
    clip-path: polygon(11% 1%, 100% 0, 100% 98%, 0 100%, 0 8%);
}

#home4 {
    clip-path: polygon(30% 0%, 71% 0, 80% 18%, 100% 25%, 100% 100%, 0 100%, 0 21%, 23% 18%);
}

#home5 {
    border-radius: 10px;
}

#home6 {
    clip-path: polygon(0 0, 100% 35%, 100% 100%, 0 70%);
}

.undblurImage {
    filter: blur(8px);
    transition: filter 0.5s;
    
    border-radius: 15px;
}

#homeImage img { 
    width: 90vw;
    border-radius: 15px;
    clip-path: polygon(50% 0%, 86% 11%, 100% 40%, 100% 100%, 19% 92%, 0% 60%, 0 0);
}

.undblurImage:hover {
    filter: blur(0px);    
}
