/* h1{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: underline;
    line-height: normal;
} */

/* p{
    text-align: center;
    margin: 50px;
    text-indent: 25px;
    font-size: larger;
} */

.front-header{
    text-align: center;
    margin-top: 40px;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 40px;
}

.profession{
    text-align: center;
    margin: 30px;
    margin-top: 10px;
    font-size: 25px;
    font-family: 'Roboto', Helvetica, sans-serif;
}

.about-me-header-div{
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 10px auto;
    margin-top: 50px;
}

.about-me-header{
    text-align: left;
    font-size: 24px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.about-me-text-div{
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 10px auto;
}

.about-me-text{
    text-align: left;
    font-size: 18px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-bottom: 50px;
}

.header-link{
    color: inherit;
}

.projects-header-div{
    background-color: #202020;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.projects-header{
    text-align: left;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    font-size: 25px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-bottom: 0;
}

.projects{
    background-color: #202020;
}

.projects p{
    text-align: center;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    padding-bottom: 10px;
}

.projects-bubbles-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    padding-top: 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.projects-bubble{
    background-color: #323232;
    color: white;
    text-align: left;
    padding: 10px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
}

.project-title{
    text-align: left;
    margin: 10px;
    font-size: 20px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.project-summary{
    padding: 10px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.project-link{
    margin-top: auto;
    text-align: right;
}

.project-link a{
    color: #00bfff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.project-link a:hover{
    color: #66d9ff;
}

.connect-with-me{
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 10px auto;
    margin-top: 10px;
}

.connect-with-me h2{
    text-align: left;
    max-width: 800px;
    width: 100%;
    margin: 10px auto;
    font-size: 25px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-bottom: 0;
}

.connect-with-me p{
    text-align: left;
    font-size: 18px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.connect-with-me ul{
    list-style: none;
    align-items: center;
}

.connect-with-me li{
    margin-bottom: 5px;
}

.connect-with-me a{
    text-decoration: underline;
    color: inherit;
}