/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inconsolata", monospace;
}

/* Background */
body {
    background: url("assets/images/bg1.jpeg") no-repeat center center fixed;
    background-size: cover;
    color: #CBDFBD;
    overflow: hidden; /* Prevent scrolling */
}

/* Header */
header {
    position: fixed;
    top: 3%;
    left: 3%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 75px;
    height: 75px;
}

.title {
    font-size: 3vw;
}

/* Date & Time */
.date-time {
    position: fixed;
    top: 3%;
    right: 3%;
    text-align: right;
    font-size: 1.5vw;
}

/* Navigation */
nav {
    position: fixed;
    top: 15%;
    right: 3%;
}

nav ul {
    list-style: none;
}

nav ul li {
    margin: 10px 0;
}

nav ul li a {
    text-decoration: none;
    color: #CBDFBD;
    font-size: 1.8vw;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #B2E5FF;
}

/* Main Content */
.content {
    position: absolute;
    top: 25%;
    left: 5%;
    width: 45vw;
    height: 60vh;
    overflow-y: auto; /* Allows scrolling */
}

.mockery-section h2 {
    font-size: 2.5vw;
    margin-bottom: 10px;
}

.mockery-section p {
    font-size: 1.5vw;
    line-height: 1.5;
    margin-bottom: 15px;
}

.mockery-section img {
    width: 100%;
    border-radius: 10px;
}

/* Mouse Tracker */
#mouse-tracker {
    position: fixed;
    bottom: 3%;
    left: 3%;
    background: rgba(23, 23, 23, 0.7);
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid rgba(178, 229, 255, 0.5);
    font-size: 1.2vw;
}
