body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Fredoka', sans-serif;
    
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cloud-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 20px 25px rgba(173, 216, 230, 0.3));
    animation: float 4s ease-in-out infinite;
    margin-top: 80px; 
}

.cloud {
    width: 600px; 
    min-height: 180px; 
    background: #ffffff;
    border-radius: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud::after, .cloud::before {
    content: '';
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    z-index: -1;
}

/* Círculo izquierdo */
.cloud::after {
    width: 320px;
    height: 270px;
    top: -40px;
    left: 20px;
}

/* Círculo derecho */
.cloud::before {
    width: 320px;
    height: 270px;
    top: -60px;
    right: 20px;
}

.cloud-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 30px 40px;
}

.cloud-buttons {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cinna{
    height: 100px;
}

h1 {
    color: #89cff0;
    font-size: 1.8rem;
    margin: 0;
}

p {
    color: #b0c4de;
    font-size: 1rem;
    margin: 5px 0 15px 0;
}

.project-link {
    display: inline-block;
    text-decoration: none;
    background-color: #f0f8ff;
    color: #89cff0;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #89cff0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: #89cff0;
    color: white;
    transform: translateY(-3px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}