body {
    margin: 0;
    background: black;
    color: white;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Fondo */
.background-glitch {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.gif');
    background-size: cover;
    opacity: 0.3;
    z-index: -10;
}
/* Barra superior */
.topbar {
    width: 100%;
    background: #dcdcdc;
    color: black;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: 14px;
    border-bottom: 2px solid black;
}

/* Ventanas */
.window {
    position: absolute;
    background: rgba(255,255,255,0.95);
    color: black;
    border: 3px solid #000;
    box-shadow: 0 0 15px magenta;
    padding: 15px;
}
.title-bar {
    background: darkblue;
    color: white;
    padding: 5px;
    margin: -15px -15px 15px -15px;
    font-weight: bold;
}

/* Posiciones */
.about-window {
    top: 100px;
    left: 50px;
    width: 350px;
}

.image-window {
    top: 120px;
    right: 120px;
    width: 300px;
}
.social-window {
    top: 450px;
    right: 80px;
    width: 250px;
}

/* Imagen */
.profile-pic {
    width: 100%;
    filter: contrast(120%) saturate(120%);
}

/* Skills */
.skills img {
    width: 45px;
    margin: 5px;
}
/* Texto gigante */
.big-text {
    position: absolute;
    top: 600px;
    left: 100px;
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px yellow;
    font-style: italic;
    text-shadow: 0 0 20px yellow;
    opacity: 0.9;
}

/* Stickers */
.sticker {
    position: absolute;
    z-index: 50;
}
.star {
    width: 150px;
    top: 750px;
    left: 500px;
}

.flower {
    width: 120px;
    top: 200px;
    left: 700px;
}

/* Posts */
.blog-post {
    position: absolute;
    width: 300px;
    background: rgba(0,0,0,0.8);
    border: 2px solid lime;
    padding: 20px;
    top: 900px;
    left: 100px;
    color: lime;
    box-shadow: 0 0 20px lime;
}
.second-post {
    left: 500px;
    top: 1100px;
}

/* Glitch */
.window:hover {
    transform: rotate(-1deg) scale(1.02);
    transition: 0.2s;
}

/* Scrollbar retro */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: black;
}

::-webkit-scrollbar-thumb {
    background: magenta;
}