/* Create a custom pink glittery cursor */
.cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #F027BE;
    border-radius: 50%;
    pointer-events: none;  /* So it doesn't interfere with other elements */
    transition: 0.1s ease;
    box-shadow: 0 0 5px 2px rgba(240, 39, 190, 0.7), 
    0 0 10px 5px rgba(240, 39, 190, 0.5), 
    0 0 20px 10px rgba(240, 39, 190, 0.3);
    animation: glitter 1.5s infinite alternate; /* Glitter effect */
}

@keyframes glitter {
    0% {
        box-shadow: 0 0 5px 2px rgba(240, 39, 190, 0.7), 
                    0 0 10px 5px rgba(240, 39, 190, 0.5), 
                    0 0 20px 10px rgba(240, 39, 190, 0.3);
    }
    50% {
        box-shadow: 0 0 10px 5px rgba(240, 39, 190, 1), 
                    0 0 20px 10px rgba(240, 39, 190, 0.8), 
                    0 0 30px 15px rgba(240, 39, 190, 0.5);
    }
    100% {
        box-shadow: 0 0 15px 8px rgba(240, 39, 190, 0.6), 
                    0 0 25px 15px rgba(240, 39, 190, 0.4), 
                    0 0 35px 20px rgba(240, 39, 190, 0.2);
    }
}

/* Hide the default system cursor */
body {
    cursor: none;
}

/* Font settings */
@font-face {
    font-family: 'Nexa Light';
    font-style: normal;
    font-weight: normal;
    src: local('Nexa Light'), url('font/NexaLight.woff') format('woff');
}

@font-face {
    font-family: 'Nexa Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Nexa Bold'), url('font/NexaBold.woff') format('woff');
}

@font-face {
    font-family: 'Y2K Brutalism Font';
    src: url('font/Y2KBrutalismFontRegular.woff2') format('woff2'), url('font/Y2KBrutalismFontRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset margins and paddings */
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F6C7DB;
    background-image: url('img/BABI\ BG\ FLAMES\ BOTTOM.png');
    background-size: 80%;
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-position: bottom;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Logo settings */
.logo {
    width: 300px;
    margin: -90px auto;
}

/* Animation container */
.anim {
    width: 65%;
    overflow: hidden;
    margin: 0 auto;
    background: #000;
    text-align: center;
}

.anim img {
    max-width: 100%;
    height: auto;
}

.resp {
    max-width: 100%;
    height: auto;
}

/* Header settings */
header {
    padding: 60px;
    text-align: center;
    color: white;
    font-size: 30px;
    font-family: 'Y2K Brutalism Font';
}

/* CD player settings */
.music-player {
    position: absolute;
    top: 45%;
    left: 15%;
    z-index: 10;
}


/* Pink 90s GIF settings */
.phone img {
    position: absolute;
    top: 35%;
    left: -4%;
    z-index: 10;
    width: 300px; 
    height: auto; 
    margin-left: 20px; 
    transform: rotate(15deg);
}

.cherry img {
    position: absolute;
    top: 25%; 
    right: 8%;
    width: 130px;

}

.car img {
    position: absolute;
    top: 45%; 
    right: 9%;
    width: 200px;

}

.flashnews img {
    position: absolute;
    top: 69%;
    left: 66.5%;
    width: 500px;
    
}

.diamond img {
    position: absolute;
    top: 85%;
    left: 13%;
    width: 13%;
    transform: rotate(-25deg);

}

.woke img {
    position: absolute;
    top: 120%;
    width: 230px;
    left: 2%;
    transform: rotate(20deg);

}

.hip img {
    position: absolute;
    top: 98%;
    width: 15%;
    left: 77%;
}


/* Header text settings */
h2 {
    font-size: 20px;
    text-align: center;
    font-family: 'Y2K Brutalism Font';
    color: #EC50A1;
}

/* Boxes styling */
.boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10%;
    justify-items: center;
    width: 65%;
    margin: 2% auto;
}

.boxes img {
    max-width: 100%;
    height: auto;
}


/* Navigation styles */
ul {
    list-style-type: none;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background-color: #F6C7DB;
}

li {
    display: inline-block; 
}

li a {
    display: inline-block;
    padding: 14px 16px;
    text-decoration: none;
    color: white;
    background-color: transparent;
    border-radius: 50px;
    transition: all 0.3s ease;
}

li a:hover {
    background-color: #F027BE;
}

/* Animation for the logo */
.logoanim {
    position: relative;
    animation: myfirst 2s;
}

@keyframes myfirst {
    0% {
        left: 0;
        top: 300px;
    }

    100% {
        left: 0;
        top: 0;
    }
}

footer {
    font-family: 'Nexa Bold', sans-serif; 
    font-size: 16px; 
    font-weight: bold; 
    color: white; 
    text-align: center; 
    white-space: nowrap; 
    overflow: hidden; 
    padding-left: 75px;

}
