html { /* Apply background to both html and body */
    background: linear-gradient(-90deg, #26125b 0%, #653cd0 25%, #d94a4a 75%, #d50505 100%);
    color: #ffbbbb;
    margin: 0;
    padding: 0;
    height: 100%; /* Ensure both html and body take full available height */
    width: 100%;
    /* display: block; */
}

body {
    background-image: url('/assets/img/image-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: 100vh; /* Use 100vh for full viewport height */
    width: 100vw; /* Use 100vw for full viewport width */
    color: #ffbbbb;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrolling if wrapper content is exactly viewport size */
    display: flex; /* Use flexbox for centering */
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%); /* Start slightly higher for fade-in effect */
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
    }
}

.wrapper {
    position: absolute; /* Keep absolute for centering */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Centering trick */
    -webkit-transform: translate(-50%, -50%);
    animation: fadeIn 1000ms ease forwards; /* Use forwards to keep the end state */
    -webkit-animation: fadeIn 1000ms ease forwards;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 40px 20px; /* Adjust default padding for better initial look */
    max-width: 90%; /* Prevent wrapper from exceeding screen width on small screens */
    width: auto; /* Allow content to dictate width up to max-width */
}

h1 {
    font-size: 3em;
    font-family: 'Syncopate', 'Poppins', sans-serif;
    margin-bottom: 0;
    line-height: 1.2; /* Slightly increased line-height for better readability */
    font-weight: 700;
    word-wrap: break-word; /* Ensure long words break */
    min-width: 0; /* Fix for flexbox or absolute positioning with long words */
}

.dot {
    color: #ff2e2e;
}

p {
    text-align: center;
    margin: 18px 0; /* Adjust margin to only top/bottom */
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    word-wrap: break-word; /* Ensure long words break */
}

.icons {
    text-align: center;
    margin-top: 20px; /* Add some space above icons */
}

.icons i {
    color: #00091B;
    background: #fff;
    height: 15px;
    width: 15px;
    padding: 13px;
    margin: 0 8px; /* Slightly reduce icon margin */
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
    display: inline-flex; /* Use inline-flex for better centering/sizing */
    justify-content: center;
    align-items: center;
}

.icons i:hover,
.icons i:active {
    color: #fff;
    background: none;
    cursor: pointer !important;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    text-decoration: none;
}

/* Media Queries for Smoother Scaling */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em; /* Adjusted down for smoother transition */
    }

    p {
        font-size: 1.05em; /* Adjusted down slightly */
    }

    .wrapper {
        padding: 30px 15px; /* Adjust padding for tablets */
    }

    .icons i {
        padding: 10px; /* Smaller padding for icons on tablets */
        height: 12px;
        width: 12px;
        font-size: 0.9em; /* Adjust icon font size */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6em; /* Noticeable reduction for phones */
        line-height: 1.3;
    }

    p {
        font-size: 0.9em; /* Smaller text for better fit */
        margin: 10px 0;
    }

    .wrapper {
        padding: 20px 10px; /* More compact padding for phones */
    }

    .icons i {
        padding: 8px; /* Even smaller padding for icons on phones */
        height: 10px;
        width: 10px;
        font-size: 0.8em;
        margin: 0 5px; /* Tighter spacing */
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 1.4em; /* For very small screens */
    }

    p {
        font-size: 0.85em;
    }

    .wrapper {
        padding: 15px 8px;
    }

    .icons i {
        padding: 6px;
        margin: 0 4px;
        font-size: 0.7em;
    }
}




























/* body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
}

.wrapper {
    max-width: 900px;
    padding: 40px;
    background-color: #282828;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

h1 {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 3.5em;
    color: #653CD0;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dot {
    color: #f0f0f0;
}

p {
    font-size: 1.3em;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #cccccc;
}

.icons {
    margin-top: 30px;
}

.icons a {
    color: #653CD0;
    font-size: 2em;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.icons a:hover {
    color: #8a6be6;
}
*/

