h1{
    color: rgb(190,200,209);
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
}

.section-title{
    text-decoration: underline rgb(49,230,240) 2.5px;
    font-weight: bolder;
}

.period {
  color: #e12885;
  text-decoration: none;
  font-family: "Notable", sans-serif;
  font-style: normal;
  font-size: 27px;
}

.introduction-container{
    color: white;
    margin: 50px;
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards
}

.hello-container{
    font-size: clamp(30px, 4.2vw, 50px);
    display: flex;
    justify-content: center;
}

.name-container{
    font-size: clamp(60px, 8vw, 120px);
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.short-des-container{
    font-size: clamp(20px, 2.1vw, 25px);
    text-align: center;
    width: 80%; 
    max-width: 600px;    
    margin: 50px auto;
    line-height: 35px;
}

.profile-img{
    width: clamp(300px, 50vw, 550px);  /* scales with viewport */
    height: clamp(300px, 50vw, 550px);     
    border-radius: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.check-more-container{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    
}

.check-more-box{
    font-size: clamp(14px, 2vw, 20px);
    color: rgb(49,230,240);
    transition: 0.5s;
}

.check-more-box:hover{
    transition: 0.5s;
    transform: translateX(20px);
}

.about-me-container{
    background-color: transparent;
    justify-content: center;
    color: aliceblue;
    font-size: clamp(15px, 2vw, 25px);
    margin-bottom: 100px;
    
}

.text-about-me-container{
    text-align: center;
    width: 50%;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards
}

.projects-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    font-size: 20px;
    margin-bottom: 75px;
}

.projects{
    transition: 0.4s;
    background-color: rgb(128,128,128, 0.1);
    border-style: solid;
    border-color: rgb(49,230,240);
    width: 500px;
    height: 500px;
    border-radius: 15px;
    padding: 15px;
    color: white;
}

.projects:hover{
    transition: 0.4s;
    transform: translateY(-6px);
}

.projects img{
    width: 100%;
    height: 200px;         
    object-fit: cover;
    border-radius: 8px;
}

.project-title{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 40px;
}

.project-summary{
    padding-top: 30px;
    padding-bottom: 30px;
}

.project-tools{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    text-align: left;
    font-style: italic;
    color: #666;
    margin-top: 5px;
    
}

.more-projects{
    align-self: flex-end;
}

.projects-button{
    background:transparent;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    padding: 10px;
    font-size: 20px;
    color: rgb(49,230,240);
    transition: 0.4s;
}

.projects-button:hover{
    transition: 0.4s;
    font-size: 21px;
}

.skills-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 20px;
    margin-bottom: 75px;
}

.skill-box{
    background-color: rgb(128,128,128, 0.1);
    border-style: solid;
    border-color: rgb(49,230,240);
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-size: 20px;
}

.skill-box:hover{
    transition: 0.5s;
    background-color: rgba(128, 128, 128, 0.525);
}

.contact-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box{
    background-color: rgb(128,128,128, 0.1);
    border-style: solid;
    border-color: rgb(49,230,240);
    border-width: 1.5px;
    transition: 0.5s;
    padding: 10px;
    border-radius: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
    color: white;
    text-align: left;
    width: 370px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon{
    width: 30px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text{
    line-height: 0.2;
}

.contact-link{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.contact-box:hover{
    transition: 0.5s;
    background-color: rgba(128, 128, 128, 0.525);
}