/* Base Styles */
:root {
    --text-color: #000;
    --head-color: #114D73;
    --link-color: #165F8C;
    --background-color: #eeeff1;
    font-size: 16px; /* Set the base font size */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem; /* Adjust this value based on the height of your nav bar */
}

body {
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: light;
    font-weight: 300;
    line-height: normal;

    padding-top: 70px;
    align-items: center;
    
}

main {
    /* display: flex; */
    /* flex-direction: column; */
    place-items: center;
    /* align-items: center; */

}

a {
    color: var(--link-color);
    text-decoration: none; /* ensures there's no underline for the links */
    display: inline;
}

h1 {
    color: var(--head-color);
    font-family: Avenir, sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
   
} 

h2 {
    color: var(--head-color);
    font-family: Avenir, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

ul {
  list-style-type: disc; /* options: disc, circle, square, etc. */
}

li {
    list-style-type: disc;
}

/* ABOUT SECTION */

#about-section {
    margin-top: 10px;
    margin-bottom: 50px;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#about-section .headshot img{
    width: 150px;
    height: 150px;
    margin-top: 70px;
    border-radius: 50%;
    object-fit: cover;
}

#about-section .links{
    margin: -50px 0;
    transition: .1s;
}

#about-section .links a:hover{
    color: var(--text-color);
}

#about-section h1{
    width: 430px; 
    height: 30px;
}

#about-section p {
    width: 400px;
    height: 138px;
} 

#about-section p a:first-child{
    margin: 0 10px;
    align-items: center;
    margin-left: 4px;
}

/* #about-section p a{
    margin: 0 10px;
    align-items: center;
}  */


/* NOW SECTION */

#now{
    margin-top: 100px 0;
    margin-bottom: -10px;
}

#now h2 { 
    width: 589px;
    height: 30px;
    flex-shrink: 0;
}

#now ul {
    width: 589px;
    height: 197px;
    flex-shrink: 0;
}

/* THEN SECTION */
#then h2 {
    width: 589px;
    height: 30px;
    flex-shrink: 0;
}

#then ul {
    width: 589px;
    height: 241px;
    flex-shrink: 0;
}

#excited-about h2 {
    width: 589px;
    height: 30px;
    flex-shrink: 0;
}

/* EXCITED ABOUT SECTION */
#excited-about p {
    width: 589px;
    height: 113px;
    flex-shrink: 0;
    text-align: center;
}

/* LINKS */

#links {
    position: fixed;
    top: 37vh;
    right: 2rem;
}


@media (max-width: 630px) {
    #about-section {
        flex-direction: column;
        padding: 0 20px;
    }

    /* #about-section .text{ */
        /* padding-left: 100px; */
        /* margin-left: 0 40px; */
    /* } */

    /* #about-section .headshot{
        align-items: center;
    } */
}