/* ===========================
KAELLYNXEN ABOUT ME
=========================== */

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');


*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


body{

    background:#000;

    color:#b5b5b5;

    font-family:"VT323", monospace;

    font-size:22px;

    overflow-x:hidden;

}


.container{

    width:1200px;

    max-width:95%;

    margin:25px auto;

}



/* ===========================
ABOUT BOX
=========================== */


.about-box{

    background:#000;

    border:2px solid #32145c;

    border-radius:14px;

    padding:20px;

    margin-bottom:25px;


    box-shadow:

        0 0 5px rgba(80,255,120,.45),

        0 0 15px rgba(80,255,120,.25),

        0 0 35px rgba(80,255,120,.12);

}



.about-box h1{

    text-align:center;

    color:#c9b6eb;

    font-size:60px;

    font-weight:normal;

    letter-spacing:6px;

    margin-bottom:15px;

}



/* ===========================
SONA AREA
=========================== */


.sona-area{

    position:relative;

    height:650px;

    display:flex;

    justify-content:center;

    align-items:center;

}



.sona{

    width:420px;

    height:520px;

    object-fit:contain;

    image-rendering:pixelated;

}



/* ===========================
BUBBLES
=========================== */


.bubble{

    position:absolute;

    background:#000;

    border:2px solid #32145c;

    border-radius:12px;

    padding:12px 20px;

    color:#b5b5b5;

    text-align:center;

    font-size:26px;


    box-shadow:

        0 0 5px rgba(80,255,120,.5),

        0 0 15px rgba(80,255,120,.25);


    transition:.2s;

}


.bubble:hover{

    border-color:#c9b6eb;

    transform:scale(1.05);

}



/* Bubble positions */


.bubble-1{

    top:40px;

    left:120px;

}


.bubble-2{

    top:120px;

    right:120px;

}


.bubble-3{

    bottom:130px;

    left:100px;

}


.bubble-4{

    bottom:120px;

    right:100px;

}


.bubble-5{

    top:260px;

    left:40px;

}


.bubble-6{

    top:260px;

    right:40px;

}

/* ===========================
FANDOM BOXES
=========================== */


.fandom-box{

    background:#000;

    border:2px solid #32145c;

    border-radius:14px;

    padding:20px;

    margin-bottom:25px;


    box-shadow:

        0 0 5px rgba(80,255,120,.45),

        0 0 15px rgba(80,255,120,.25),

        0 0 35px rgba(80,255,120,.12);

}



.fandom-box h2{

    text-align:center;

    color:#c9b6eb;

    font-size:42px;

    font-weight:normal;

    letter-spacing:4px;

    margin-bottom:20px;

}



/* ===========================
MAIN FANDOMS
=========================== */


.main-fandoms{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:10px;

}



.main-fandoms p{

    color:#365c22;

    border-left:2px solid #32145c;

    padding:8px;

    font-size:26px;

}



/* ===========================
GENERAL FANDOMS
=========================== */


.general-fandoms{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:25px;

}



.general-fandoms h3{

    grid-column:1 / -1;

    color:#7ab84a;

    font-size:32px;

    font-weight:normal;

    letter-spacing:3px;

    margin-top:15px;

    border-bottom:1px solid #32145c;

}



.general-fandoms p{

    color:#b5b5b5;

    font-size:24px;

    line-height:1.2;

}



/* ===========================
SMALL DETAILS
=========================== */


.fandom-box p:hover{

    color:#c9b6eb;

}



@media(max-width:700px){


    .about-box h1{

        font-size:45px;

    }


    .sona-area{

        height:550px;

    }


    .sona{

        width:280px;

        height:400px;

    }


    .bubble{

        font-size:20px;

        padding:8px 12px;

    }


    .main-fandoms,
    .general-fandoms{

        grid-template-columns:1fr;

    }


}