@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Georama&display=swap');

:root {

    --hue-color: 224;
    --color0: hsl(var(--hue-color), 89%, 60%);
    --color1: hsl(var(--hue-color), 56%, 12%);
    --color2: #141156;

    --title-size: 55px;
    --title-font: 'Source Sans Pro', sans-serif;

    --header-height: 4.5rem;
    --footer-heigth: 7rem;
}

* {

    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;
    scroll-padding-block-start: var(--header-height);
}

/* HEADER */

header {

    width: 100%;
    height: var(--header-height);
    background-color: white;
    position: fixed;
    box-shadow: 0 1px 4px rgba(0, 0, 255, 0.116);
    z-index: 99999;
}

header img {

    width: 180px;
    margin-top: 3px;
}

header .fas {

    display: none;
}

nav {
    
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-menu {

    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    height: var(--header-height);
    list-style: none;
}

.header-menu li {

    margin: 0 20px;
    position: relative;
}

.header-menu .selected::after, .header-menu li:hover::after {

    position: absolute;
    content: '';
    width: 105%;
    height: 0.2rem;
    left: -2.5%;
    top: 2rem;
    background-color: var(--color0);
}

.header-menu li a {

    text-decoration: none;
    color: var(--color1);
    font-weight: 600;
    font-size: 18px;
}

/* HOME */

#home {

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh;
    align-items: center;
}

.hello-and-social {

    flex-basis: 57%;
    padding-left: 12%;
    margin-top: -40px;
}

.hello-and-social p {

    text-align: justify;
    font-weight: 500;
    font-size: 25px;
    font-family: 'Georama', sans-serif;
    color: var(--color2);
}

.hello-and-social span {

    color: var(--color0);
    font-size: 80px;
    font-weight: 600;
}

.header-social {

    padding-top: 35px;
}

.header-social i {

    color: var(--color2);
    font-size: 35px;
    margin: 0 12px;
    transition: 0.5s;
}

.header-social i:hover {

    color: var(--color0);
    transform: translateY(-4px);
}

.header-img-container {

    flex-basis: 38%;
}

.header-img-container img {

    width: 520px;
    height: 100%;
    border-radius: 50%;
    box-sizing: content-box;
}

/* ABOUT */

#about {

    width: 100%;
    height: calc(100vh - var(--header-height));
    text-align: center;
}

#about h1 {

    text-align: center;
    font-size: var(--title-size);
    padding-top: 10px;
    padding-bottom: 80px;
    font-family: var(--title-font);
    font-weight: bolder;
    color: var(--color2);
    position: relative;
}

#about h1::after {

    position: absolute;
    content: '';
    width: 180px;
    height: 0.25rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 5rem;
    background-color: var(--color2);
}

#about p {

    font-size: 19px;
    padding: 35px 30px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.pleft {

    margin-left: 7%;
    margin-right: 25%;
}

.pright {

    margin-left: 25%;
    margin-right: 7%;
}

/* APPS */

#apps {

    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color1);
    text-align: center;
}

#apps h1 {

    text-align: center;
    font-size: var(--title-size);
    padding-top: 10px;
    padding-bottom: 70px;
    font-family: var(--title-font);
    font-weight: bolder;
    color: white;
    position: relative;
}

#apps h1::after {

    position: absolute;
    content: '';
    width: 180px;
    height: 0.25rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 5rem;
    background-color: white;
}

.apps_panel {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 10px 70px;
    background-color: white;
    border-radius: 30px;
    height: 70%;
}

.app {

    flex-basis: 18%;
    width: fit-content;
    margin: auto 0;
    padding: 20px 0;
    border-radius: 30px;
    text-decoration: none;
    color: black;
}

.app img {

    width: 200px;
    margin-bottom: 5px;
    border-radius: 30px;
}

.app p {

    font-family: 'Georama', sans-serif;
    font-weight: 600;
    font-size: 18px;
}


.app:hover {

    background-color: lightskyblue;
}

/* CONTACT */ 

#contact {

    text-align: center;
    justify-content: space-between;
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--footer-heigth));
    align-items: center;
}

#contact h1 {

    text-align: center;
    font-size: var(--title-size);
    padding-top: 10px;
    padding-bottom: 60px;
    font-family: var(--title-font);
    font-weight: bolder;
    color: var(--color2);
    position: relative;
}

#contact h1::after {

    position: absolute;
    content: '';
    width: 300px;
    height: 0.25rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 5rem;
    background-color: var(--color2);
}


form input, form textarea {

    width: 38%;
    border: 2px solid var(--color1);
    outline: none;
    padding: 12px;
    color: black;
    margin: 25px auto;
    font-size: 18px;
    border-radius: 10px;
    display: block;
}

form button {

    display: block;
    margin: 50px auto;
    width: fit-content;
    padding: 15px 62px;
    border-radius: 6px;
    border-width: 0;
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    background: var(--color2);
    transition: all 0.5s;
}

form button:hover {

    background: var(--color0);
}

#msg {

    color: var(--color0);
    margin-top: -40px;
    display: block;
}

/* FOOTER */

footer {

    width: 100%;
    height: var(--footer-heigth);
    background-color: var(--color1);
    color: white;
    position: relative;
}

footer h2, footer p {

    text-align: center;
}

footer h2 {

    font-size: 35px;
    font-weight: 500;
    font-family: 'Georama', sans-serif;
    padding-top: 7px;
}

footer p {

    position: absolute;
    bottom: 5%;
    font-weight: 600;
    margin: 0 auto;
    left: 0;
    right: 0;
}

@media screen and (max-width: 480px) {

    :root {

        --header-height: 6rem;
        --footer-heigth: 5rem;
    }

    header img {
    
        width: 100px;
        margin-top: 51px;
    }

    .header-menu {

        display: block;
        height: 100vh;
    }

    .header-menu li a, .header-menu i {

        color: white;
    }

    nav {

        margin-top: 5px;
    }

    nav .fas {

        display: block;
        font-size: 25px;
        padding-top: 48px;
    }

    .header-menu {

        background: var(--color1);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 30px;
        z-index: 2;
        transition: right 0.5s;
    }

    .header-menu li {

        display: block;
        margin: 0;
        height: 7vh;
        text-align: center;
    }

    .header-menu .fas {

        text-align: center;
        margin-bottom: 30px;
        cursor: pointer;
        font-size: 25px;
    }

    .header-menu a {

        font-size: 18px;
    }

    .header-menu .selected::after, .header-menu li:hover::after {

        width: 0%;
    }

    .header-menu .selected a, .header-menu li a:hover, .header-menu i:hover {

        color: var(--color0);
    }

    /* HOME */

    #home {

        display: block;
        height: fit-content;
    }
    
    .hello-and-social {
    
        padding-left: 5%;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .hello-and-social span {
    
        text-align: left;
        font-size: 45px;
    }
    
    .header-social {
    
        padding-top: 20px;
    }
    
    .header-social i {
    
        font-size: 28px;
        margin: 0 10px 0 0;
    }
    
    .hello-and-social p {
    
        font-size: 18px;
    }

    .header-img-container {

        text-align: center;
    }
    
    .header-img-container img {
    
        width: 280px;
        height: 100%;
        border-radius: 50%;
        border: 5px var(--color3) solid;
        box-sizing: content-box;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* ABOUT */

    #about {

        height: fit-content;
    }

    #about h1 {

        font-size: 40px;
        padding-bottom: 60px;
    }

    #about h1::after {

        width: 160px;
        top: 4rem;
    }
    
    #about p {
    
        font-size: 17px;
        padding: 25px 20px;
        border-radius: 30px;
        margin-bottom: 30px;
    }
    
    .pleft {
    
        margin-left: 7%;
        margin-right: 7%;
    }
    
    .pright {
    
        margin-left: 7%;
        margin-right: 7%;
    }

    /* APPS */

    #apps {

        height: fit-content;
        padding-bottom: 20px;
    }
    
    #apps h1 {
    
        font-size: 40px;
        padding-bottom: 40px;
    }
    
    #apps h1::after {
    
        width: 160px;
        top: 4rem;
    }
    
    .apps_panel {
    
        margin: 10px 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .app {
        flex: 100%;
        width: fit-content;
        margin: 20px 30px;
        padding: 20px 5px;
    }
    
    .app img {
    
        width: 150px;
    }
    
    .app p {
    
        font-size: 16px;
    }

    /* CONTACT */

    #contact {

        height: fit-content;
    }

    #contact h1 {

        font-size: 40px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    #contact h1::after {

        width: 250px;
        top: 4rem;
    }

    form input, form textarea {

        width: 90%;
        border: 1px solid var(--color1);
        padding: 10px;
        font-size: 15px;
    }

    form button {

        margin-bottom: 40px;
        padding: 12px 55px;
        font-size: 15px;
    }

    #msg {

        margin-top: -20px;
        margin-bottom: 15px;
    }

    /* FOOTER */

    footer h2 {

        font-size: 25px;
        padding-top: 5px;
    }

    footer p {

        bottom: 4%;
        font-size: 14px;
    }
}

@media screen and (min-width: 480px) and (max-width: 768px) {

    :root {

        --header-height: 6rem;
        --footer-heigth: 5rem;
    }

    header img {
    
        width: 110px;
        margin-top: 50px;
    }

    .header-menu {

        display: block;
        height: 100vh;
    }

    .header-menu li a, .header-menu i {

        color: white;
    }

    nav {

        margin-top: 5px;
    }

    nav .fas {

        display: block;
        font-size: 25px;
        padding-top: 47px;
    }

    .header-menu {

        background: var(--color1);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 30px;
        z-index: 2;
        transition: right 0.5s;
    }

    .header-menu li {

        display: block;
        margin: 0;
        height: 7vh;
        text-align: center;
    }

    .header-menu .fas {

        text-align: center;
        margin-bottom: 30px;
        cursor: pointer;
        font-size: 25px;
    }

    .header-menu a {

        font-size: 18px;
    }

    .header-menu .selected::after, .header-menu li:hover::after {

        width: 0%;
    }

    .header-menu .selected a, .header-menu li a:hover, .header-menu i:hover {

        color: var(--color0);
    }

    /* HOME */

    #home {

        display: block;
        height: fit-content;
    }
    
    .hello-and-social {
    
        padding-left: 5%;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .hello-and-social span {
    
        text-align: left;
        font-size: 50px;
    }
    
    .header-social {
    
        padding-top: 22px;
    }
    
    .header-social i {
    
        font-size: 28px;
        margin: 0 10px 0 0;
    }
    
    .hello-and-social p {
    
        font-size: 19px;
    }

    .header-img-container {

        text-align: center;
    }
    
    .header-img-container img {
    
        width: 310px;
        height: 100%;
        border-radius: 50%;
        border: 5px var(--color3) solid;
        box-sizing: content-box;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* ABOUT */

    #about {

        height: fit-content;
    }

    #about h1 {

        font-size: 40px;
        padding-bottom: 60px;
    }

    #about h1::after {

        width: 160px;
        top: 4rem;
    }
    
    #about p {
    
        font-size: 17px;
        padding: 25px 20px;
        border-radius: 30px;
        margin-bottom: 30px;
    }
    
    .pleft {
    
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .pright {
    
        margin-left: 5%;
        margin-right: 5%;
    }

    /* APPS */

    #apps {

        height: fit-content;
        padding-bottom: 20px;
    }
    
    #apps h1 {
    
        font-size: 40px;
        padding-bottom: 40px;
    }
    
    #apps h1::after {
    
        width: 160px;
        top: 4rem;
    }
    
    .apps_panel {
    
        margin: 10px 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .app {
    
        width: fit-content;
        margin: 20px auto;
        padding: 20px 30px;
    }
    
    .app img {
    
        width: 150px;
    }
    
    .app p {
    
        font-size: 16px;
    }

    /* CONTACT */

    #contact {

        height: fit-content;
    }

    #contact h1 {

        font-size: 40px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    #contact h1::after {

        width: 250px;
        top: 4rem;
    }

    form input, form textarea {

        width: 80%;
        border: 1px solid var(--color1);
        padding: 10px;
        font-size: 15px;
    }

    form button {

        margin-bottom: 40px;
        padding: 12px 55px;
        font-size: 15px;
    }

    #msg {

        margin-top: -20px;
        margin-bottom: 15px;
    }

    /* FOOTER */

    footer h2 {

        font-size: 25px;
        padding-top: 5px;
    }

    footer p {

        bottom: 4%;
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) { 

    :root {

        --header-height: 6rem;
        --footer-heigth: 5rem;
    }

    header img {
    
        width: 110px;
        margin-top: 50px;
    }

    .header-menu {

        display: block;
        height: 100vh;
    }

    .header-menu li a, .header-menu i {

        color: white;
    }

    nav {

        margin-top: 5px;
    }

    nav .fas {

        display: block;
        font-size: 25px;
        padding-top: 47px;
    }

    .header-menu {

        background: var(--color1);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 30px;
        z-index: 2;
        transition: right 0.5s;
    }

    .header-menu li {

        display: block;
        margin: 0;
        height: 7vh;
        text-align: center;
    }

    .header-menu .fas {

        text-align: center;
        margin-bottom: 30px;
        cursor: pointer;
        font-size: 25px;
    }

    .header-menu a {

        font-size: 18px;
    }

    .header-menu .selected::after, .header-menu li:hover::after {

        width: 0%;
    }

    .header-menu .selected a, .header-menu li a:hover, .header-menu i:hover {

        color: var(--color0);
    }

    /* HOME */

    #home {

        display: block;
        height: fit-content;
    }
    
    .hello-and-social {
    
        padding-left: 5%;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .hello-and-social span {
    
        text-align: left;
        font-size: 55px;
    }
    
    .header-social {
    
        padding-top: 22px;
    }
    
    .header-social i {
    
        font-size: 28px;
        margin: 0 10px 0 0;
    }
    
    .hello-and-social p {
    
        font-size: 20px;
    }

    .header-img-container {

        text-align: center;
    }
    
    .header-img-container img {
    
        width: 320px;
        height: 100%;
        border-radius: 50%;
        border: 5px var(--color3) solid;
        box-sizing: content-box;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* ABOUT */

    #about {

        height: fit-content;
    }

    #about h1 {

        font-size: 40px;
        padding-bottom: 60px;
    }

    #about h1::after {

        width: 160px;
        top: 4rem;
    }
    
    #about p {
    
        font-size: 17px;
        padding: 25px 20px;
        border-radius: 30px;
        margin-bottom: 30px;
    }
    
    .pleft {
    
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .pright {
    
        margin-left: 5%;
        margin-right: 5%;
    }

    /* APPS */

    #apps {

        height: fit-content;
        padding-bottom: 20px;
    }
    
    #apps h1 {
    
        font-size: 40px;
        padding-bottom: 40px;
    }
    
    #apps h1::after {
    
        width: 160px;
        top: 4rem;
    }
    
    .apps_panel {
    
        margin: 10px 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .app {
    
        width: fit-content;
        margin: 20px auto;
        padding: 20px 30px;
    }
    
    .app img {
    
        width: 150px;
    }
    
    .app p {
    
        font-size: 16px;
    }

    /* CONTACT */

    #contact {

        height: fit-content;
    }

    #contact h1 {

        font-size: 40px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    #contact h1::after {

        width: 250px;
        top: 4rem;
    }

    form input, form textarea {

        width: 60%;
        border: 1px solid var(--color1);
        padding: 10px;
        font-size: 15px;
    }

    form button {

        margin-bottom: 40px;
        padding: 12px 55px;
        font-size: 15px;
    }

    #msg {

        margin-top: -20px;
        margin-bottom: 15px;
    }

    /* FOOTER */

    footer h2 {

        font-size: 25px;
        padding-top: 5px;
    }

    footer p {

        bottom: 4%;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1600px) {

    :root {

        --header-height: 6rem;
        --footer-heigth: 5rem;
    }

    header img {
    
        width: 110px;
        margin-top: 50px;
    }

    .header-menu {

        display: block;
        height: 100vh;
    }

    .header-menu li a, .header-menu i {

        color: white;
    }

    nav {

        margin-top: 5px;
    }

    nav .fas {

        display: block;
        font-size: 25px;
        padding-top: 47px;
    }

    .header-menu {

        background: var(--color1);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 30px;
        z-index: 2;
        transition: right 0.5s;
    }

    .header-menu li {

        display: block;
        margin: 0;
        height: 7vh;
        text-align: center;
    }

    .header-menu .fas {

        text-align: center;
        margin-bottom: 30px;
        cursor: pointer;
        font-size: 25px;
    }

    .header-menu a {

        font-size: 18px;
    }

    .header-menu .selected::after, .header-menu li:hover::after {

        width: 0%;
    }

    .header-menu .selected a, .header-menu li a:hover, .header-menu i:hover {

        color: var(--color0);
    }

    /* HOME */

    #home {

        display: block;
        height: fit-content;
    }
    
    .hello-and-social {
    
        padding-left: 5%;
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .hello-and-social span {
    
        text-align: left;
        font-size: 70px;
    }
    
    .header-social {
    
        padding-top: 22px;
    }
    
    .header-social i {
    
        font-size: 28px;
        margin: 0 10px 0 0;
    }
    
    .hello-and-social p {
    
        font-size: 23px;
    }

    .header-img-container {

        text-align: center;
    }
    
    .header-img-container img {
    
        width: 350px;
        height: 100%;
        border-radius: 50%;
        border: 5px var(--color3) solid;
        box-sizing: content-box;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    /* ABOUT */

    #about {

        height: fit-content;
    }

    #about h1 {

        font-size: 40px;
        padding-bottom: 60px;
    }

    #about h1::after {

        width: 160px;
        top: 4rem;
    }
    
    #about p {
    
        font-size: 17px;
        padding: 25px 20px;
        border-radius: 30px;
        margin-bottom: 30px;
    }
    
    .pleft {
    
        margin-left: 5%;
        margin-right: 20%;
    }
    
    .pright {
    
        margin-left: 20%;
        margin-right: 5%;
    }

    /* APPS */

    #apps {

        height: fit-content;
        padding-bottom: 20px;
    }
    
    #apps h1 {
    
        font-size: 40px;
        padding-bottom: 40px;
    }
    
    #apps h1::after {
    
        width: 160px;
        top: 4rem;
    }
    
    .apps_panel {
    
        margin: 10px 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .app {
    
        width: fit-content;
        margin: 20px auto;
        padding: 20px 30px;
    }
    
    .app img {
    
        width: 150px;
    }
    
    .app p {
    
        font-size: 16px;
    }

    /* CONTACT */

    #contact {

        height: fit-content;
    }

    #contact h1 {

        font-size: 40px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    #contact h1::after {

        width: 250px;
        top: 4rem;
    }

    form input, form textarea {

        width: 50%;
        border: 1px solid var(--color1);
        padding: 10px;
        font-size: 15px;
    }

    form button {

        margin-bottom: 40px;
        padding: 12px 55px;
        font-size: 15px;
    }

    #msg {

        margin-top: -20px;
        margin-bottom: 15px;
    }

    /* FOOTER */

    footer h2 {

        font-size: 25px;
        padding-top: 5px;
    }

    footer p {

        bottom: 4%;
        font-size: 14px;
    }
}