h1 {
    color: gold;
    background-color: rgb(10, 31, 68);
    font-size: 30px;
    text-decoration: underline;
    font-style: italic;
    text-align: center;
}
h2 {
    color: gold;
    font-weight: bold;
    font-size: 30px;
}
p {
    color: #000000;
    line-height: 20px;
    font-size: 20px;
}
ul {
    font-size: 20px;
    color: black;
}
li {
    font-size: 20px;
    color: black;
}
div {
    color: gold;
    font-size: 30px;
}

p.success {
    color: black;
    font-weight: bold;
}


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        min-height: 100vh;
        background: #444444;
        font-family: 'Arial', sans-serif;
    }

    .slider-container {
        position: relative;
        width: 800px;
        height: 400px;
        perspective: 1000px;
    }

    .slider {
        position: absolute;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        animation: rotate 40s infinite linear;
    }

    .slide {
        position: absolute;
        width: 60%;
        height: 80%;
        left: 20%;
        top: 10%;
        border-radius: 15px;
        cursor: pointer;
        box-shadow: 0 10px 30px black;
        transform-style: preserve-3d;
        transition: transform 1s;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slide:nth-child(1) {transform: rotateY(0deg) translateZ(600px);}
    .slide:nth-child(2) {transform: rotateY(90deg) translateZ(600PX);}
    .slide:nth-child(3) {transform: rotateY(180deg) translateZ(600px);}
    .slide:nth-child(4) {transform: rotateY(270deg) translateZ(600px);}

    @keyframes rotate {
        0% { transform: rotateY(0deg);}
        25% { transform: rotateY(90deg);}
        50% { transform: rotateY(180deg);}
        75% { transform: rotateY(270deg);}
        100% { transform: rotateY(360deg);}
    }

    /*pause animation on hover */
    .slider-container:hover .slider {
        animation-play-state: paused;
    }

    body {
        height: 100vh;
    }

    .glow-button {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: gold;
        text-transform: uppercase;
        text-decoration: none;
        background-color: transparent;
        border: 2px solid gold;
        border-radius: 5px;
        box-shadow:  0 0 10px rgb(173, 149, 8), 0 0 20px rgb(199, 170, 6), 0 0 30px rgb(156, 133, 3);
        transition: all 0.4s ease;
        position: relative;
    }

    .glow-button::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 50%;
        width: 300%;
        height: 300%;
        background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent);
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.6s ease;
        z-index: 0;
    }
    
    .glow-button nav {
        color: #1a1a1a;
        background-color: rgb(31, 18, 18);
        box-shadow: 0 0 20px rgb(173, 148, 6), 0 0 40px rgb(156, 134, 6), 0 0 60px rgb(153, 131, 4);
    }
    .glow-button nav::before {
        transform: translate(-50%, -50%) scale(1);
    }

    .glow-button span {
        position: relative;
        z-index: 1;
    }
    
    textarea {
    background-color: darkgray;
    height: 60px;
    width: 200px;
    }

    footer {
        background:white;
        color: #fff;
        padding: 40px 0 15px;
        font-family: Arial, sans-serif;
    }

    .footer-container {
        display: flex;
        /*justify-content: space-between;*/
        max-width: 1100px;
        margin: auto;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }

    .footer-column h3 {
        border-bottom: 2px solid #444;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

    .footer-column ul li {
        margin: 8px 0;
    }

    .footer-column a {
        color: #bbb;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-column a:hover {
        color: black;
    }

    .whatsapp-link {
        display: inline-flex;
        align-items: center;
        margin-top: 10px;
        color: #25D366;
        font-weight: bold;
    }

    .whatsapp-link img {
        width: 22px;
        height: 22px;
        margin-right: 8px;
    }

    .footer-bottom {
        text-align: center;
        border-top: 1px solid #333;
        margin-top: 20px;
        padding-top: 10px;
        font-size: 14px;
    }

    @media (max-width: 120px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }
        .whatsapp-link {
            justify-content: center;
        }
    }
