* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0 auto;
    padding: 10px;
    background-color: pink;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
}

/* FONTS */
.emilys-candy-regular {
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    font-style: normal;
}

.crafty-girls-regular {
    font-family: "Crafty Girls", serif;
    font-weight: 400;
    font-style: normal;
}

.main-title {
  text-align: center;
  font-family: "Emilys Candy", serif;
  font-size: 100px;
  font-weight: bold;
  color: hotpink;
  margin-top: 40px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px white;
}

.sub-title {
  text-align: center;
  font-family: "Crafty Girls", serif;
  font-size: 40px;
  color: deeppink;
  margin-bottom: 50px;
}



/* HEADER */
.container-1 {
    border: 25px inset hotpink;
    padding: 100px;
    background-image: url("homepg1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    width: 90%;
    text-align: center;
    border: 4px groove pink;
    border-radius: 25px;
    padding: 100px;
    background-image: url("Home.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
}

/* SECTIONS  */
.container-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    text-align: center;
    padding: 10px;
}

.item2 {
    border: 5px outset hotpink;
    max-width: 90%; 
    text-align: center;
    margin: auto;
    padding: 20px;
}

/* BACKGROUND IMAGES */
.content-4 {
    background-image: url("fantasyicon1.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    height: 600px;
    transition: 0.3s;
    width: 400px;
}

.content-4:hover {
    opacity: 0.9;
    background-image: url("fantasyicon.jpg");
}

.content-5 {
    background-image: url("editicon1.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    height: 600px;
    transition: 0.3s;
    width: 400px;
}

.content-5:hover {
    opacity: 0.9;
    background-image: url("editicon.jpg");
}

.content-6 {
    background-image: url("influence.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    height: 600px;
    transition: 0.3s;
    width: 400px;
}

.content-6:hover {
    opacity: 0.9;
    background-image: url("influenceicon.jpg");
}

/* TEXT */
#hometext {
    font-size: 45px;
    font-family: "Emilys Candy", serif;
    font-weight: 400;
    color: black;
    text-align: center;
    text-shadow: 1px 0px 0px black, 0 0 25px ghostwhite, 0 0 9px white;
}

#hometext:hover {
    color: hotpink;
}


/* Timeline */

.circle-timeline {
  position: relative;
  width: 100px;
  height: 800px;
  margin: 500px auto 0; /
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.circle-item {
  --total: 10;
  position: absolute;
  width: 160px;
  text-align: center;
  transform: rotate(calc(360deg / var(--total) * var(--i)))
             translateY(-370px)
             rotate(calc(-360deg / var(--total) * var(--i)));
  transform-origin: center center;
  font-family: 'Emilys Candy', cursive; /* Or any other font you prefer */
  color: hotpink;
}

.circle-item h2 {
  font-size: 70px;
  margin-bottom: 0.25rem;
  color: hotpink;

}

.circle-item p {
  font-size: 60px
  margin: 0;
  color: hotpink;
}


/* FOOTER */
.footer-credits {
    background-color: lightpink;
    border-radius: 10px;
    border: 4px solid hotpink;
    padding: 20px;
    text-align: center;
    color: white;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline-block;
    padding: 10px;
    border: 3px solid hotpink;
    font-family: "Crafty Girls", serif;
    margin: 5px;
    font-size: 30px;
}





