/* =========================================
   Reset & Basic Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html, body {
    height: 100%;
    background-color: rgb(10, 10, 50);
    color: oklch(27.808% 0.02963 256.871);
    line-height: 1.6;
}


/* =========================================
    Main Content Area
========================================= */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main.container {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}


li.project {
    background-color: rgb(138, 96, 255);
    border-radius: 32px;
    padding: 1rem;
    margin-bottom: 1rem;
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition-duration: 0.4s;
}
li.project p {
    font-weight: bold;
    font-size: 1em;
}
li.project:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}


ul#project {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

a.button {
    display: block;
    margin-bottom: 10px;
    width: fit-content;
}

.bubble {
    background-color: rgb(153, 131, 255);
    padding: 20px;
    border-radius: 32px;
}