/* style.css */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

body {
    background-color: #1e1e2e;
    background-image: url('./BLACK_II_desktop-1_catppuccin.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#content {
    text-align: center;
    font-size: 2rem; /* Adjust based on preference */
    color: #cdd6f4;
}

#repoLink {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    color: #cdd6f4;
    text-decoration: none; /* Optional: Removes underline from link */
}