body {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    background-color: oklab(69.486% 0.16804 -0.12732);
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

#blob {
    height: 400px;
    width: 400px;
    position: fixed;
    z-index: -1;
    left: 50%;
    top: 50%;
    translate: (-50%, -50%);
    border-radius: 50%;
    pointer-events: none;

    background: linear-gradient(to right, #bae6fd, #e9d5ff);

    filter: blur(120px);
    opacity: 0.7;

    mix-blend-mode: screen;


}

margin {
    color: #090112;
    text-align: center;
    margin: 20px;
}



h1 {
    color: #090112;
    text-align: center;
    margin-top: 20px;

}

h1, h2 {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

h1:hover, h2:hover {
    color: blueviolet;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgb(from color 168 85 247 / 0.5);
}

nav ul { 
    list-style-type: none;
    margin: 0;
    display: flex;
    padding: 0;
    list-style: none;
    justify-content: center;
    gap: 20px;
}

h2 {
    color: #090112;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

p {
    color: #090112;
    text-align: center;
    margin: 20px;
}

nav ul li {
    display: inline;
    font-size: 16px;
    color: blueviolet;
}

a {
    text-decoration: none;
    color: blueviolet;

}

footer {
    background-color: #7b58a5;
    color: rgb(66, 5, 86);
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
    bottom: 0;
    margin: 0;
    margin-top: 100px;
    clear: both;

}