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

@font-face 
{
    font-family: 'Gemunu Libre';
    src: url(Fonts/GemunuLibre-VariableFont_wght.ttf);
}

@font-face 
{
    font-family: 'Montserrat';
    src: url(Fonts/Montserrat-SemiBold.ttf);
}

@font-face 
{
    font-family: 'Oswald';
    src: url(Fonts/Oswald-VariableFont_wght.ttf);
}

@font-face 
{
    font-family: 'Yaldevi';
    src: url(Fonts/Yaldevi-VariableFont_wght.ttf);
}


/*NAVIGATION BAR-----||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/


.navbar
{
    background-color: rgba(0, 0, 0, 10);
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:  1.2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbarContainer
{
    display: flex;
    justify-content: space-between;
    height: 60px;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

#navbarLogo
{
    color: white;
    display: inline-block;
    align-items: center;
    font-size: 3rem;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Gemunu Libre', sans-serif;
    font-weight: bold;
}

#navbarLogo span
{
    color: #03c6fc;
}

.navbarMenu
{
    display: flex;
    align-items: center;
    list-style: none;
}

.navbarItem
{
    height: 100px;
}

.navbarLinks
{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.navbarLinks:hover
{
    font-size: 1.4rem;
    color: #03c6fc;
}


/*MAIN SECTION-----||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/


.mainSection
{
    background-image: url('bgHome.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 90vh;
    scroll-margin-top: 10vh;
}

.intro
{
    padding: 25vh 0 0 0;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    text-align: center;
}

.introDesc
{
    padding: 20px 0 0 0;
    color: rgb(160, 160, 160);
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: lighter;
    text-align: center;
}

.mainNavContainer
{
    padding-top: 35px;
    display: flex;
    justify-content: center;
}

.buttonContainer
{
    height: 70px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.buttonContainer a
{
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    height: 60px;
    width: 180px;
    border: none;
    outline: none;
    border-radius: 30px;
    background: #00aada;
    color: white;
    transition: all 0.4s ease;
}

.buttonContainer a:hover
{
    background: #00799b;
    height: 64px;
    width: 192px;
    border-radius: 32px;
    transition: all 0.4s ease;
}

.mainNavContainer p
{
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    padding: 0px 25px;
    color: rgb(160, 160, 160);
}


/*PROJECTS SECTION-----||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/


.projectSection
{
    background-image: url('bgProjects.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    width: 100%;
    height: 90vh;
    scroll-margin-top: 10vh;
    align-content: center;
}

.projectHeader
{
    display: flex;
    align-items: flex-end;
}

.projectTitle
{
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    padding-left: 50px;
    margin-top: 75px;
    color: white;
}

.projectTitle span
{
    color: #03c6fc;
}

.projectButton
{
    height: 70px;
    width: 200px;
    display: flex;
    position: absolute;
    right: 50px;
    justify-content: center;
    align-items: center;
}

.projectButton a
{
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    height: 60px;
    width: 180px;
    border: none;
    outline: none;
    border-radius: 30px;
    background: #00aada;
    color: white;
    transition: all 0.4s ease;
}

.projectButton a:hover
{
    background: #00799b;
    height: 64px;
    width: 192px;
    border-radius: 32px;
    transition: all 0.4s ease;
}

.projectContainer
{
    margin-top: 50px;
    padding: 0px 100px;
    display: grid;
    width: auto;
    height: auto;
    grid-template-columns: 33.33% 33.33% 33.33% ;
    grid-template-rows: auto auto;
}

.projectImage
{
    display: flex;
    justify-content: center;
    height: auto;
}

.projectImage img
{
    width: 320px;
    height: auto;
}

.projectContent
{
    display: flex;
    padding-top: 20px;
    height: auto;
    justify-content: space-around;
}

.projectContent p
{
    font-family: 'Yaldevi', sans-serif;
    font-size: 1.2rem;
    justify-content: space-evenly;
    text-align: justify;
    width: 250px;
    color: white;
}

.bold
{
    font-weight: bold;
}

.projectContent p span
{
    color: #ea7600;
}

.projectContent p span2
{
    color: #33c8fa;
}

.projectContent p span3
{
    color: #e3bd9e;
}

.projectContent p span4
{
    color: #fffc9c;
}

.projectContent p span5
{
    color: #00979c;
}

.projectContent p span6
{
    color: #f16528;
}

.projectContent p span7
{
    color: #585858;
    font-size: 0.8rem;
}


/*ABOUT SECTION-----||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/


.aboutSection
{
    background-image: url('bgAbout.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -200px 0px;
    width: 100%;
    height: 90vh;
    display: flex;
    scroll-margin-top: 10vh;
}

.imgContainer
{
    margin-left: 80px;
    margin-right: 80px;
}

.myPic
{
    padding-top: 70px;
    width: 450px;  
}

.aboutContainer
{
    width: 100%;
}

.aboutTitle
{
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: white;
    padding: 70px 70px 20px 0px;
    text-align: right;
}

.aboutTitle span
{
    color: #03c6fc;
}

.aboutContent
{
    font-family: 'Yaldevi', sans-serif;
    font-size: 1.3rem;
    color: white;
    text-align: justify;
    padding-right: 100px;
    padding-bottom: 20px;
}

.aboutButton
{
    height: 70px;
    width: 200px;
    padding-top: 20px;
    display: flex;
    position: absolute;
    right: 90px;
    justify-content: center;
    align-items: center;
}

.aboutButton a
{
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    height: 60px;
    width: 180px;
    border: none;
    outline: none;
    border-radius: 30px;
    background: #00aada;
    color: white;
    transition: all 0.4s ease;
}

.aboutButton a:hover
{
    background: #00799b;
    height: 64px;
    width: 192px;
    border-radius: 32px;
    transition: all 0.4s ease;
}


/*CONTACT SECTION-----||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/


.contactSection
{
    background-color: #131313;
    width: 100%;
    height: 20vh;
}

.emailAddress
{
    height: 20vh;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: gray;
    font-size: 1.5rem;
    font-family: 'Gemunu Libre', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: absolute;
}

.emailAddress span
{
    color: #03c6fc;
}

.emailAddress span2
{
    letter-spacing: 5px;
}

.mediaContainer
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mediaLinks
{
    display: flex;
    float: left;
    padding: 0px 10px;
}

.mediaLinks a
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.youtubeLink
{
    color: red;
    position: relative;
    bottom: 0px;
    transition: all 0.3s ease;
}

.youtubeLink:hover
{
    background-color: red;
    color: white;
    bottom: 5px;
    transition: all 0.3s ease;
}

.instaLinks
{
    display: flex;
    float: left;
    padding: 0px 10px;
    position: relative;
    bottom: 0px;
    transition: all 0.3s ease;
}

.instaLinks:hover
{
    bottom: 5px;
    transition: all 0.3s ease;
}

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

.bottomLayer:hover
{
    opacity: 0;
}

.bottomLayer p
{
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.bottomLayer a
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
}

.topLayer
{
    display: flex;
    align-items: center;
    position: absolute;
    opacity: 0;
    transition: all 0.3s ease;
}

.topLayer:hover
{
    opacity: 1;
    transition: all 0.3s ease;
}

.topLayer p
{
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
}

.topLayer a
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    color: white;
    position: absolute;
}