/* Background & Animation */
.gradient-background {
  background: linear-gradient(300deg, black, rgb(0, 181, 106), black);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Font Styles */
.font, .fontMiddle {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.fontMiddle {
  color: rgb(250, 255, 205);
}

p {
  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.white {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.sub {
  color: rgb(250, 255, 205);
  text-shadow: 30px;
  max-width: 90%;
}

h2 {
  text-decoration: underline;
  color: #1c0037;
}

/* Background Color */
#background {
  background-color: #ececec;
}

/* Flex Layouts */
.flex-container {
  display: flex;             
  justify-content: center;  
  align-items: center;  
  gap: 40px;            
  flex-wrap: wrap;           
  margin: 40px auto;   
  max-width: 1200px;    
}

.flex2 {
  display: flex;
  justify-content: center;
  align-content: center;
}

/* Image & Container Styling */
.image-container {
  display: flex;
  flex-direction: row;    
  align-items: center;       
  gap: 5px;                 
}

.image, .imageCat {
  border: thick double #140028;
  border-radius: 30%;
  height: 275px;
}

.image2 {
  width: 100%;
  max-height: 200px;
  padding: 0;
  border: thick double #140028;
  margin-left: 25px;
}

/* Container and Child Layout */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 20px;
  margin: 0 auto;     
  justify-items: center; 
}

.child {
  justify-content: center;
  align-items: center;
}

/* Skill List */
.skill-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  max-width: 600px;
  gap: 15px;
}

.skill-list {
  padding-left: 20px;
  margin: 0;
  max-width: 80%;
}

.skill-list li {
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}

.skill-list li::marker {
  color: #00b521;
}

.list {
  list-style-position: inside;
  color: rgb(250, 255, 205);
  max-width: 80%;
}

/* Miscellaneous */
.icon-square {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}

.profile-img {
  height: 100px;
  border-radius: 50%;
}

hr {
  border: thick double #140028;
}

.inline {
  display: inline;
}

.border {
  box-shadow: inset 0 0 0 15px #140028;
}
