

body {
    background: rgb(255, 244, 239);
    color: white;
    margin: 0;
    padding: 0;
    font-family: Optima, sans-serif;
}

header {
    color: rgb(255, 188, 205);
    padding: 10px 20px 0px 20px;
}

ul {
    list-style-type: disc;  
    padding-left: 20px;   
    margin-top: 0;
}

section div img {
    width: 200px;
    border-radius: 10%;
    position: relative;
    text-align: right;
    display: inline-block;
    margin: auto;
}

.logo img {
    max-height: 150px;    
    height: auto;
    width: auto;
    display: block;
}

section {
    color: black;
    padding: 20px;
    display: block;
    flex-direction: row;
    justify-content: space-around; 
    align-items: flex-start;
}

.homepage {
    color: black;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around; 
    align-items: flex-start;
}

.section-block {
    width: 30%;
    align-items: flex-start;
    text-align: left;
}

.headshot img {
    width: 300px;
    border-radius: 10%;
    display: block;
    margin: 0 auto;
}

header nav ul li {
    display: inline-block;
    margin-bottom: 15px;
    margin: 20px;
}

li {
    display: list-item; 
    margin: 20px 0;      
}

nav {
    background: rgb(255, 201, 215);
    display: flex;
    align-items: center;       
    justify-content: space-between; 
    padding: 20px 40px;
    height: 200px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-bar {
    display: flex;
    list-style: none;
    gap: 30px;                 
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-bar li a {
    color: darkblue;
    text-decoration: underline;
}

footer {
    background: rgb(255, 201, 215);
    color: white;
    padding: 10px;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.skills-section {
  display: flex;
  justify-content: space-around;
  gap: 50px;
  padding: 40px;
  background: rgb(255, 244, 239);
  color: #FC809F;
  font-family: 'Optima', sans-serif;
}

.skills-column {
  width: 45%;
}

.skills-column h2 {
  color:  #FC809F;
  font-size: 28px;
  margin-bottom: 30px;
}

.skill {
  margin-bottom: 25px;
}

.skill-name {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 1px;
}

.skill-bar {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  height: 12px;
  position: relative;
  box-shadow: inset 0 0 5px white;
}

.skill-fill {
  background: linear-gradient(to right, rgb(255, 201, 215), #FC809F);
  height: 100%;
  position: relative;
  transition: width 1.2s ease-in-out;
}

.skill-percent {
  position: absolute;
  top: -25px;
  right: 5px;
  font-size: 14px;
  color: #ccc;
}

.title {
  font-size: 36px;
  color: #FFBCCD,;
  text-align: center;
  padding: 40px 0;
}

.name-highlight {
  color: #FF9CB5;
  font-weight: bold;
}

.cd-headline.clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: middle; 
  text-align: left;
  white-space: nowrap;
  min-width: 460px; 
}

.cd-words-wrapper b {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  white-space: nowrap;
}

.cd-words-wrapper b.is-visible {
  opacity: 1;
  position: relative;
}

@keyframes rotateWords {
  0% { opacity: 1; }
  20% { opacity: 0; }
  25% { opacity: 0; }
  45% { opacity: 1; }
  100% { opacity: 1; }
}