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

body {
    font-family: 'Kumbh Sans', sans-serif;
    background: #344055;
    overflow:hidden;
}

hr{
    height: 2px;
    width: 100px;
}

ul {
  text-align: center;
  list-style-position: inside;
  padding-left: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
    background-color: #344055;
    color: #FFECD1;
    position: relative;
    z-index: 10;
}

.logo {
    margin-top: 3%;
    margin-left: 3%;
}

.logo a{
    text-decoration: none;
    color: inherit;    
    font-size: 100px;
    font-family: "Nova Cut";
    font-weight: semi-bold;
}

.logo a span
{
    display: inline-block;
    opacity: 0;
    animation: logoFadeIn 1.3s ease-out forwards;
}

.logo a span:nth-of-type(3) {
    animation-delay: 0.2s;
}
.logo a span:nth-of-type(2) {
    animation-delay: 0.3s;
}
.logo a span:nth-of-type(1) {
    animation-delay: 0.4s;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 250px;
    width: 60%;
    padding-left: 25px;
    white-space: nowrap;
}

.nav-links a {
    color: #FFECD1;
    text-decoration: none;
    font-family: Poppins;
    font-size: 24px;
    font-weight: semi-bold;
    margin-top: 30px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUpLinks 0.6s ease-out forwards;
}

.nav-links a:nth-child(1)
{
    animation-delay: 0.2s;
}
.nav-links a:nth-child(2)
{
    animation-delay: 0.4s;
}
.nav-links a:nth-child(3)
{
    animation-delay: 0.6s;
}
.nav-links a:nth-child(4)
{
    animation-delay: 0.8s;
}

.nav-links a:hover
{
    transform: scale(1.2);
    transition: transform 0.75s;
}

.nav-divider
{
    border: none;
    height: 2px;
    background-color: #FFECD1;
    width: 75%;
    margin-top: 65px;
    margin-right: 100px;
    opacity: 0;
    animation: navbarFadeIn 1.3s ease-out 1.5s forwards;
}

h1
{
    opacity: 0;
    animation: fadeDownIntro 0.7s ease-out 0.6s forwards;
}

h1, h2, h3
{
    display: block;
}

h1,h3
{
    font-size: 36px;
    color: #A9CEF4;
    font-weight: semi-bold;
}

h2
{
    opacity: 0;
    font-size: 75px;
    color: #FFECD1;
    font-weight: bold;
    animation: fadeRight 0.7s ease-out 0.7s forwards;
}

h3
{
    opacity: 0;
    animation: fadeUpIntro 0.7s ease-out 0.6s forwards;
}

.download-btn {
    display: flex;
    margin-top: 25px;
    padding: 10px 20px;
    border: 3.5px solid #A9CEF4;
    color: #FFECD1;
    text-decoration: none;
    border-radius: 20px;
    font-size: 20px;
    font-family: Poppins;
    font-weight: semi-bold;
    opacity: 0;
    animation: fadeRightIcons 1.3s ease-out 0.3s forwards;
}

.download-btn:hover
{
    color: #344055;
    background-color: #A9CEF4;
    transition: background-color 0.75s, color 0.75s, transform 0.4s ease;
}

.intro 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 750px;
    padding: 0 45px;
    gap: 10px;
}

.icons
{
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 25px;
}

.icon
{
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #FFECD1;
    border: 3.5px solid #A9CEF4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 12px;
    text-decoration: none;
    background-color: transparent;
    animation: fadeRightIcons 1.3s ease-out forwards;
}

.icon:nth-child(1)
{
    animation-delay: 0.1s;
}
.icon:nth-child(2)
{
    animation-delay: 0.2s;
}
.icon:nth-child(3)
{
    animation-delay: 0.3s;
}

.icon:hover 
{
    background-color: #FFECD1;
    color: #344055;
    transform: scale(1.3);
    transition: background-color 0.75s, color 0.75s, transform 1s ease;
}

@keyframes fadeUpLinks
{
    0%
    {
        opacity: 0;
        transform: translateY(85px) scale(0.8);
    }

    100%
    {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeDownIntro
{
    0%
    {
        opacity: 0;
        transform: translateY(-85px);
    }
    100%
    {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeUpIntro
{
    0%
    {
        opacity: 0;
        transform: translateY(85px);
    }

    100%
    {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight
{
    0%
    {
        opacity: 0;
        transform: translateX(-105px);
    }

    100%
    {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRightIcons
{
    0%
    {
        opacity: 0;
        transform: translateX(-3000px);
    }

    100%
    {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoFadeIn 
{
 0%
 {
    opacity: 0;
    transform: translateX(-2000px);
 }
 100%
 {
    opacity: 1;
    transform: translateX(0);
 }   
}

@keyframes navbarFadeIn
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}

.photo {
    position: fixed;
    width: 750px;
    height: 750px;
    top: 15%;
    right: 45px;
}


.backdrop
{
    position: relative;
    width: 750px;
    height: 750px;
    transform: rotate(15deg);
}

.bubble
{
    position: absolute;
    background-color: #FFECD1;
    box-shadow: 0px 0px 20px #FFECD1;
    opacity: 0;
    animation: zoomIn 1s ease-out forwards, pulse 3s ease-in-out infinite;
}

.bubble1
{
    width: 355px;
    height: 375px;
    left: 175px;
    top: 15px;
    border-radius: 50%;
    transform: rotate(30deg);
}

.bubble2
{
    width: 355px;
    height: 375px;
    left: 125px;
    top: 300px; 
    border-radius: 50%;
    transform: rotate(30deg);
}

.bubble3
{    
    width: 275px;
    height: 250px;
    left: 180px;
    top: 200px; 
    border-radius: 50%;
}

.bubble4
{
    width: 300px;
    height: 400px;
    left: 270px;
    bottom: 160px;
    border-radius: 50%;
    transform: rotate(15deg);
}


@keyframes zoomIn 
{
    0%
    {
        transform: translateY(500px) scale(0);
        opacity: 0;
    }
    
    100%
    {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bubble:nth-child(1)
{
    animation-delay: 0.5s, 2.1s;
}
.bubble:nth-child(2)
{
    animation-delay: 0.7s, 2.1s;
}
.bubble:nth-child(3)
{
    animation-delay: 0.9s, 2.1s;
}
.bubble:nth-child(4)
{
    animation-delay: 1.1s, 2.1s;
}

@keyframes pulse 
{
    0%, 100%
    {
        transform: scale(1);
    }

    50%
    {
        transform: scale(1.05);
    }
}

.image img
{
    position:absolute;
    width: 375px;
    height: auto;
    top: 100px;
    right: 125px;
    opacity: 0;
    animation: imageFade 1s ease-out 0.5s forwards, pulse 3s ease-in-out 2.1s infinite;
}

@keyframes imageFade 
{
    0%
    {
        transform: translateX(-500px) translateY(500px) scale(0);
        opacity: 0;
    }
    100%
    {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

.aboutme
{
    display: flex;
    flex-direction: column;
    margin-left: 35px;
    height: 100vh;
    padding: 50px;
    padding-top: 150px;
}

.aboutmeparagraph
{
    font-family: 'Kumbh Sans', sans-serif;
    color: #A9CEF4;
    font-size: 20px;
    font-weight: bold;
    width: 50%;
    padding: 10px;
    opacity: 0;
    animation: fadeRight 0.5s ease-out 0.8s forwards;
}

.aboutmeparagraph:nth-child(1)
{
    animation-delay: 0.8s;
}
.aboutmeparagraph:nth-child(2)
{
    animation-delay: 1s;
}
.aboutmeparagraph:nth-child(3)
{
    animation-delay: 1.2s;
}
.aboutmeparagraph:nth-child(4)
{
    animation-delay: 1.4s;
}



h4
{
    display: flex;
    font-size: 36px;
    color: #FFECD1;
    font-weight: lighter;
    justify-content: left;
    padding-left: 10px;
    opacity: 0;
    animation: fadeRight 1s ease-out 0.5s forwards;
}

@keyframes fadeUp 
{
    0%
    {
        transform: translateY(500px) scale(0);
        opacity: 0;
    }
    100%
    {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.photo_personal img
{
    width: 500px;
    height: auto;    
    position: absolute;
    top: 200px;
    right: 125px;
    border-radius: 50%;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.5s forwards, pulse 3s ease-in-out 1.6s infinite;
}

.projects
{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}

.projectcard
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    margin: 20px;
    background-color: #A9CEF4;
    flex: 1;
    cursor:default;
    transition: flex 0.5s ease;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.3s forwards;
}

.projectcard img
{
    width: 200px;
    transition: transform 0.5s ease;
}

.projectcard:hover img 
{
    transform: translateX(-100%);
}

.projectcard:hover{
    flex: 3;
}

h5
{
    font-size: 35px;
    padding-bottom: 16px;
}

h6
{
    font-size: 20px;
    padding-bottom: 16px;
}

.projectinfo
{   
    color: #FFECD1;
    max-width: 250px;
    text-align:center;
    position:fixed;
    opacity: 0;

    right: 10%;
    top: 50%;

    transition: opacity 0.3s ease, transform 0.2s ease;
    transform: translateY(-50%) translateX(50px);
}

.projectinfo p
{
    font-size: 12px;
    padding-bottom: 16px;
    font-family: Poppins;
    font-weight: 400;
}

.projectinfo ul
{
    text-align: center;
}

.projectcard:hover .projectinfo 
{
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.textbackground
{
    position: absolute;
    right: 0;
    background-color: black;
    height: 100%;
    width: 50%;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    opacity: 0;

    transition: opacity 0.3s ease;
}

.projectcard:hover .textbackground
{
    opacity: 1;
}

.projectlinks .icon
{
    display: inline-flex;
    justify-content: center;
    opacity: 1;
    font-size: 24px;
    color: black;
    border: 3.5px solid #A9CEF4;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 12px;
    background-color: #ffa31a;
    animation: none;
}

.projectlinks
{
    padding-top: 15px;
}

.projectstitle h4
{
    font-style: Poppins;
    color: #FFECD1;
    font-weight: lighter;
    width: 100%;
    top: 15%;
    justify-content: center;
    position: absolute;
    transform: translateX(-50%);
    animation: fadeDownIntro 1s ease-out 0.5s forwards;
}

.contactmetitle
{
    top:15%;
}

.contactmetitle h4
{
    display: flex;
    width: 100%;
    justify-content: center;
    position: absolute;
    animation:none;
    opacity: 0;
    top: 15%;
    animation: fadeDownIntro 1s ease-out 0.5s forwards;
}

.phonecontact
{
    font-size: 70px;
    font-weight: lighter;
    color: #FFECD1;
    display: flex;
    position: absolute;
    width: 25%;
    left: 10%;
    top: 25%;
}

.phonecontact p
{
    font-size: 32px;
    align-items: center;
    padding-left: 15px;
}

.phone-text {
    display: flex;
    flex-direction: column; 
    padding-left: 15px;
    font-size: 20px;
}


.emailcontact
{
    font-size: 70px;
    font-weight: lighter;
    color:#FFECD1;
    display: flex;
    position: absolute;
    width: 25%;
    left: 10%;
    top: 35%;
    /* background-color: red; */
}

.emailcontact p
{
    font-size: 32px;
    align-items: center;
    padding-left: 30px;
}


.contactinfo
{
    color: #A9CEF4;
}

.emailcontact .contactinfo
{
    font-size: 25px;
    padding-bottom: 3px;
}

.message-name
{
    width: 400px;
    height: 100px;
    top: 25%;
}

.message-bubble
{
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    background-color:#A9CEF4;
    border-radius: 35px;
}

.message-email
{
    width: 400px;
    height: 100px;
    top: 25%;
    left: 80%;
}

.message-text
{
    width: 920px;
    height: 300px;
    top: 40%;
    transform: translateX(0%);
    left: 38%;
}

.message-email input, .message-name input
{
    font-size: 28px;
}

.message-text textarea
{
    background: transparent;
    border: none;
    outline: none;
    font-size: 28px;
}

.input-container
{
    display: flex;
    position: absolute;
    background: transparent;
    border: none;
    font-size: 40px;
    text-align: center;
    width: 80%;
    left: 10%;
    outline: none;
}

.message-container
{
    height: 80%;
    top: 10%;
    width: 80%;
}

.submit
{
    background-color:#A9CEF4;
    top: 77%;
    left: 65%;
    width: 15%;
    height: 10%;
}

.submit button
{
    outline: none;
    border: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    font-size: 40px;
    color:#344055;
    cursor: pointer;
}

.hidden-message {
  display: none;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  color: green;
}

.visible-message {
  display: block;
}

#form-message
{
    display: flex;
    position:absolute;
    transform: translateX(-50%);
    left: 65%;
    top: 87%;
    height: 50px;
    width: 375px;
    justify-content: center;
    align-items: center;
    background-color:#A9CEF4;
    color:#344055;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 25px;
}

#form-message.show
{
    opacity: 1;
}

.menu-toggle
{
    /* display: none; */
    font-size: 36px;
    background: none;
    border: none;
    color:#FFECD1;
    cursor: pointer;
    opacity: 0;
}

@keyframes contactBubbles
{
    0%
    {
        transform: translateY(-185px) scale(0.25);
        opacity: 0;
    }

    100%
    {
        opacity: 1;
    }
}

@keyframes contactIcons
{
    0%
    {
        transform: translateX(-185px) scale(0.25);
        opacity: 0;
    }

    100%
    {
        transform: translateX(0px) scale(1);
        opacity: 1;
    }
}

@keyframes contactInfo
{
    0%
    {
        transform: translateX(-185px) translateY(-185px) scale(0.25);
        opacity: 0;
    }

    100%
    {
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 1;
    }
}

.message-bubble
{
    opacity: 0;
    animation: contactBubbles 1s ease-out 1s forwards;
}

.phonecontact .fas
{
    opacity: 0;
    animation: contactIcons 0.75s ease-out 1.25s forwards;
}

.emailcontact .fas
{
    opacity: 0;
    animation: contactIcons 0.75s ease-out 1.25s forwards;
}

.phonecontact p
{
    opacity: 0;
    animation: contactInfo 0.75s ease-out 0.75s forwards;
}

.emailcontact p
{
    opacity: 0;
    animation: contactInfo 0.75s ease-out 0.75s forwards
}