* {
padding: 0px;
margin: 0px;
-ms-overflow-style: none;  /* Internet Explorer 10+ */
scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}

body {
    background-color: #f5f5f5;
}

.censor {
    background-color: black;
}

main {
    background-color:white;
    width: 700px;
    margin: 30px auto 30px auto;
    padding: 30px;
    border-radius: 15px;
    font-family:'Cabin', sans-serif;
    overflow:hidden;
}

header{
    margin-bottom: 25px;
}

#name {
    font-size: 3rem;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 3px solid black;
}

section {
    margin-bottom: 25px;
    position: relative;
    
}

.active {
    transition: opacity 0.5s ease-in, max-height 0.5s ease-out;
    max-height: 9999px;
    min-height: 20px;
    opacity: 1;
}

.inactive {
    opacity: 0;
    max-height: 0px;
    min-height: 0px;
    margin:0px;
    transition: opacity 0.5s ease-in, max-height 0.5s ease-out;
}

/*section1 page1 about me*/

#abtMe {
    display: flex;
    justify-content: space-around;
    margin: 10px;
}

ul {
    position: relative;
    left: 10%;
    display: inline-block;
}

li {
    margin:5px;
}

.yuuriGLT {
    width: 300px;
}

/*section2 page2 gaming*/

h2 {
    text-align: center;
}

.divider {
    width:600px;
    margin: 5px auto 5px auto;
    display: block;
}

.games {
    display: flex;
    justify-content: space-evenly;
}

h3 {
    border-bottom: 2px solid black;
}

.stats {
    width: 300px;
}

.LHD {
    width: 100%;
}

.fukukitaru {
    display: block;
    width:300px
}

/*section3 page3 music*/

.vsLyrics {
    position: relative;
}

.starLeft {
    position:relative;
    width:100px;
}

.starRight {
    position:absolute;
    right: 0px;
    width:100px;
}

.lyricScroll {
    width: 85%;
    height: 50px;
    padding: 3px;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    overflow:hidden; 
    position:absolute;
    bottom: 25px;
    left: 50px;
}

.lyricScroll p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    letter-spacing: 3px;
    text-align:center;
    transform:translateX(100%);
    animation: scroll-left 15s linear infinite;

}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.dancingGuy {
    position: absolute;
}

.musicShowcase {
    width: 600px;
    display: grid;
    grid-template-columns: 300px 300px;
    grid-auto-rows: 100px;
    margin: auto;
    font-size: 18px;
}

.musicSpot {
    display: flex;
    align-items: center;
}

.musicSpot img {
    width: 70px;
    margin-right: 15px;
}

.dancingGuy {
    display: inline-block;
    position: absolute;
    left: 90%;
}

/*section4 page4 misc.*/

#page4 p {
    text-indent: 15px;
}

.onlineFriends {
    display: inline-block;
    position: absolute;
    left:75%;
}

#webNeighbors {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 5px 5px #dedede;
    padding: 10px;
    margin: 5px 5px 10px 5px;
    
}

.blinkies {
    width:100%;
    display:flex;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: space-evenly;
    margin: 5px 0px 5px 0px;
}

nav {
    border-top: 2px solid black;
    padding-top: 5px;
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index:99999;
}

button {
    padding: 5px 15px 5px 15px;
    background: white;
    border-radius: 15px;
    border: 2px solid gray;
    font-size: inherit; 
    transition-duration: 0.5s;
}

button:hover {
    background: grey;
    transition-duration: 0.5s;
}
