/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body Styling */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
    overflow-x: hidden;
    flex-direction: column;
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    background-color: #111;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Header Section */
.header {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #222;
    border-bottom: 1px solid #333;
    font-size: 1em;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    font-weight: 700;
}

.header p {
    margin: 5px 0;
    font-size: 0.9em;
    color: #aaa;
}

/* Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.banner span {
    font-size: 2.0em;
    font-weight: bold;
    color: #fff;
    animation: textEffect 1.5s ease-in-out forwards;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes textEffect {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Icon for View Toggle */
.toggle-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #0af;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    z-index: 10;
}

.toggle-icon:hover {
    background-color: #08a;
}

/* Body Section with Menu Buttons */
.body-section {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Button Styling with Silver Color */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 45px;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: silver;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.button i {
    margin-right: 8px;
    font-size: 18px;
}

.button:hover {
    background-color: #ccc;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

/* Footer with Contact Info and Social Icons */
.footer {
    width: 100%;
    padding: 10px;
    background-color: #222;
    border-top: 1px solid #333;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-address {
    margin: 0;
    font-size: 10px;
}

.contact-info {
    margin: 1px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ddd;
}

/* Footer Copyright Section */
.footer-copyright {
    margin-top: 2px;
    font-size: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .button {
        width: 100%;
    }

    .header img {
        width: 120px;
    }

    .banner span {
        font-size: 1.5em;
    }
}

.animate-charcter {
    text-transform: uppercase;
    background-image: linear-gradient(
        -225deg,
        #231557 0%,
        #44107a 29%,
        #ff1361 67%,
        #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 290% auto;
    color: rgba(142, 7, 7, 0.4);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: inline-block;
    font-size: 20px;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}
