/* ===== Reset default styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Body ===== */
body {
    font-family: 'Monospace', Ubuntu Mono, sans-serif;
    background-color: #000000; /* black background */
    color: #0ed145;           /* green text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* ===== Main container ===== */
.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* ===== Headings ===== */
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

/* ===== Paragraphs ===== */
p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* ===== Links ===== */
a {
    color: #0ed145;
    text-decoration: underline;
}

a:hover {
    color: #ffffff;
}

/* ===== Optional button style ===== */
.button {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #0ed145;
    border-radius: 6px;
    color: #0ed145;
    text-decoration: none;
    transition: all 0.3s;
}

.button:hover {
    background-color: #0ed145;
    color: #000000;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}
/* ===== Profile picture - small size ===== */
.profile-pic {
    width: 60px;            /* small size */
    height: 60px;
    border-radius: 50%;     
    object-fit: cover;
    margin-bottom: 15px;    
    border: 2px solid #0ed145; 
}
.back-home {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    border: 2px solid #0ed145;
    border-radius: 6px;
    color: #0ed145;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    z-index: 1000;
}

.back-home:hover {
    background-color: #0ed145;
    color: #000000;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}

