/*accent: #89b6a5 header: #315659 text: #253031*/

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #253031;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.cvDownloadText
{
    font-weight: bold;
}
.showcaseTitle{    
    top: 70%;   
    font-size: 1.5em;
    
    text-align: center;
    position: relative;   
    
    
    
}
.showcaseDiv:hover .showcaseTitle{
    opacity: 0;
}
.showcaseText{
    text-align: center;
    width: 90%;
    position: relative;
}
.showcaseDiv{
    color:white;
    position: relative;
    width: 20rem; 
    height: 20rem; 
    margin: 10px;
    background-color: lightgrey;
    border-radius: 15px;
    transition: background-size 0.5s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
    
}
.showcaseDiv:hover{
    background-size: 110%;
}
.showcaseContainer{    
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
a.showcaseLink{
    position: relative;
    color: inherit;
    text-decoration: inherit;
    text-align: inherit;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;   
}

.showcaseTitleDiv{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0),rgba(0,0,0,0));
    transition: opacity 0.3s ease;
    

}
.showcaseDiv:hover .showcaseTitleDiv{
    opacity: 0;
}
.showcaseTextDiv{
    display: flex;
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}
.showcaseDiv:hover .showcaseTextDiv{
    opacity: 1;
}

section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #333;
    font-size: 2em;
    margin-bottom: 30px;
    color: #315659;
}


h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #89b6a5; 
    margin: 0 auto;
    margin-top: 10px;
}
.no-divider::after {
    content: none;
}
h3 {
    text-align: center;
    color: #333;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #315659;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #315659;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     
}
.mainHeader {
    border-bottom: 5px solid #89b6a5;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  
    gap: 6rem;
}
.mainHeaderText
{
    justify-self: end;
    width: 500px;
}

.mainHeaderImage {
    justify-self: start;
    
    
}
.mainHeaderImage img {
    width: clamp(250px, 30vw, 500px);
    height: auto;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-align: center;
}

header ul {
    list-style: none;
    padding: 0;
}

header li {
    font-weight: 300;
    border-radius: 4px;
}



.download-icon {
    width: 18px;
    height: 18px;
    fill: white;
    vertical-align: middle;
}

