@font-face {
    font-family: 'Mintsoda';
    src: url('https://raw.githubusercontent.com/n3xta/image-hosting/main/fonts/mintsoda.ttf') format('truetype');
}

body {
    font-family: 'Mintsoda', sans-serif;
    text-align: center;
    background-color: #000000;
    color: #fff;
    margin: 0;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.foreground-image {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 7em;
    margin-top: 200px;
    margin-bottom: 10px;
    z-index: 4;
}


p {
    font-size: 2em;
    max-width: 1500px;
    margin: 20px auto;
    transition: background-color 0.5s ease;

}

p:hover {
    z-index: 5;
    background-color: #000000a9;
    transition: background-color 0.5s ease;
}

.blog-content {
    text-align: left;
    max-width: 1000px;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.5em;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    z-index: 4;
    line-height: 40px;
}

ul a {
    color: #003dda;
    text-decoration: none;
    font-size: 2em;
    transition: color 0.3s;
    font-weight: bold;
    background-color: #000000;
}

ul a:hover {
    color: #ffffff;
}

.img-unlock {
    filter: grayscale(100%) brightness(50%);
    transition: filter 0.5s, brightness 0.5s;
    max-width: 1000px;
    height: auto;
}

.img-unlock:hover {
    filter: grayscale(0%);
    z-index: 5;
}
