* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    line-height: 1.6;
	background: #f3e8de;
    color: #254c42;
    font-family: 'Inconsolata', sans-serif;

}

.container {
//    max-width: 1000px;

    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    margin-bottom: 3rem;
    text-align: left;
    padding-left: 2rem;
    padding-top: 2rem;
    color: #254c42;
}



h1, h2, h3 {
    font-family: 'Playfair Display', serif;
//    font-style: italic;
}

.color1 {
	//color: #AD0156;
}

.color2 {
	//color: #e66b09;
}

.color3 {
	//color: #436c94;
}

.color4 {
	//color: #87266e;
}


h1 {
    font-size: 7rem;
    line-height: 1em;
    margin-bottom: 0.5rem;
}

h2 {
font-size: 2rem;
font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.intro {
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro p {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.links a {
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.links a:hover {
    transform: translateY(-2px);
}

.expertise {
margin-left: 2rem;
margin-right: 2rem;
}

.expertise h2 {
font-size: 4rem;
border-bottom: 2px solid #254c42;
margin-bottom: 2rem;
}

.expertise h3 {
font-size: 2rem;
}

.expertise p {
margin-bottom: 1.5rem;
font-size: 1.5rem;
}

.links h2{
display: block;
}

.headshot {
max-width: 20rem;
border-radius: 2rem;
margin-bottom: 2rem;

}


.build {
	text-align: center;
	margin-bottom: 2rem;
}

a {
color: #e66b09;
}

a:visited {
color: #e66b09;
}

.links a:hover {
color: #436c94;
}

footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.perspective {
margin-top: 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    
    .intro {
        padding: 1.5rem;
    }
    
    .links {
        gap: 1rem;
    }
    
    .links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}