
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow: hidden; /* Prevent scrollbar */
}

.header {
    width: 100%;
    height: 120px;
    background: linear-gradient(1350deg, yellow,#007bff,#00bfff,red);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.header h1 {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 20px; /* Add padding to prevent overflow */
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: fit-content; /* Adjust width to content */
}

.btn:hover {
    background-color: #007bff;
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn p {
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: rotate(180deg);
}

.btn:focus {
    outline: none;
}
a{
    text-decoration: none;
}

@media (max-width: 768px) {
    .header {
        font-size: 2rem;
        height: 100px;
    }

    .btn {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 1.5rem;
        height: 80px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%; /* Full width on small screens */
    }
}