﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://source.unsplash.com/1920x1080/?abstract,technology') no-repeat center center/cover;
}

.content {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-custom {
    margin: 0 10px;
}

@media (max-width: 576px) {
    .btn-custom {
        display: block;
        margin: 10px auto;
    }
}

.gradient-text {
    /* Fallback: Set a background color. */
    background-color: #CA4246;
    /* Create the gradient. */
    background-image: linear-gradient( 45deg, #CA4246 16.666%, #E16541 16.666%, #E16541 33.333%, #B32D01 33.333%, #B32D01 50%, #6721AD 50%, #8B9862 66.666%, #E36D2E 66.666%, #476098 83.333%, #A7489B 83.333%);
    /* Set the background size and repeat properties. */
    background-size: 100%;
    background-repeat: repeat;
    /* Use the text as a mask for the background. */
    /* This will show the gradient as a text color rather than element bg. */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Animate the text when loading the element. */
    /* This animates it on page load and when hovering out. */
    animation: rainbow-text-simple-animation-rev 0.75s ease forwards;
}

    .gradient-text:hover {
        animation: rainbow-text-simple-animation 0.5s ease-in forwards;
    }

.custom-button {
    background-color: #2F4255;
    border: none; /* Remove borders */
    color: white; /* White text */
    text-align: center; /* Centered text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Get it to display inline */
    font-size: 16px; /* Increase font size */
    margin: 4px 2px; /* Some margin */
    cursor: pointer; /* Pointer/hand icon */
    border-radius: 6px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition */
}
footer {
    background-color: #f8f9fa;
    text-align: center;
    font-family: 'Segoe UI Symbol'
}