body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.slide {
    display: none;
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.slide.active {
    display: flex;
}

#slide1 {
    background-color: #4CAF50;
}

#slide2 {
    background-color: #2196F3;
}

#slide3 {
    background-color: #FFC107;
}

#slide4 {
    background-color: #9E9E9E;
}

h1 {
    color: white;
    font-size: 4em;
    margin-bottom: 40px;
}

h2 {
    color: white;
    font-size: 3.5em;
    margin-bottom: 40px;
}

p, a {
    color: white;
    font-size: 2.5em;
    margin-bottom: 50px;
}

.pie-chart {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #4CAF50 0% 70%,  /* Representa el 70% */
        #FF5722 70% 100% /* Representa el 30% */
    );
    margin: 20px auto;
}

.bar, .fill {
    position: absolute;
    border: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip: rect(0, auto, auto, 100px);
}

.slice {
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #FF5722;
    transform-origin: 100% 50%;
    transform: rotate(0deg);
    border-radius: 50%;
}

.bar {
    background-color: #4CAF50;
}

.fill {
    transform-origin: 100% 50%;
    transform: rotate(126deg);
}
