﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #fffff 100%);
    overflow: hidden;
}

.logo {
    width: 200px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 8rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

h2 {
    font-size: 2rem;
    color: #495057;
    margin-bottom: 30px;
}

p {
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 500px;
}

.home-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

    .home-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
        background-color: #ff5252;
    }

    .home-btn:active {
        transform: translateY(1px);
    }

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-up 4s infinite ease-in;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}
