* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    font-family: "Poppins", "Roboto", sans-serif;
    font-weight: 300;
}


/*   Header section    */
header {
    height: 80px;
    background-color: #000000;
}

.logo img {
    width: 25px;
    height: auto;
    transition: transform 0.8s ease-out;
}

.logo img:hover {
transform: rotate(360deg);
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    color: rgb(255, 255, 255);
    z-index: 10;
    padding: 26px;
}

nav a:hover {
    color: #2d2d46;
    background-color: #f8f8f8;
    font-weight: 300;
}

/*    Main Content    */
main {
    padding: 120px 0px;
    background-image: linear-gradient(
        #000000, #113F48 );
}
/*       About me      */

.bio-wrapper-two {
    width: 100%;
    margin: auto;
    display: flex;
}

.right-wrapper {
   margin-top: 40px;
}

.right-wrapper img {
    width: 450px;
    margin: auto;

   
    /*transform: translatex(600px); */
}

.left-wrapper {
    width: 60%;
    text-align: center;
    
}

.left-wrapper h1 {
    color: #d5894c;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 800;
    font-size: 30px;
}

mark.white {
    color: rgba(255, 255, 255, 0.918);
    background: none;
    font-weight: 300;
}

.left-wrapper p {
    color: rgb(255, 255, 255);
    width: 500px;
    margin: auto;
    padding-bottom: 40px;
    animation: flyup 2s ease-in-out;
}
@keyframes flyup {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.icon-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.icon-container h4 {
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 14px;
}

.icon-container p {
    font-size: 10px;
    width: fit-content;
}


/*   Article  */

article {
    width: 100%;
    margin: auto;
    background-color: black;
}



/*   Overview section  */


.problem {
    width: 50%;
}

.problem h1 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 500;
    text-align: start;
}

.problem li {
    width: 75%;
    line-height: 27px;
}

.goal {
    width: 50%;
}

.goal h1 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 500;
    text-align: start;
    display: none;
}

.goal li {
    width: 80%;
    line-height: 27px;
}



/*    Overview    */
.overview {
    color: #B3B3B3;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 180px 0px;
    }

.overview-intro {
    width: 50%;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.overview-photo {
    height: 100%;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}

.overview-intro h6 {
    margin: auto;
    text-align: start;
    color: #d7884c;
    font-size: 14px;
}

.overview-intro h1 {
    width: 100%;
    margin: auto;
    text-align: start;
    font-weight: 500;
    font-size: 30px;
    margin: 20px 0px;
    color: rgb(255, 255, 255);
}

.overview-intro p {
    width: 100%;
    margin: auto;
    font-size: 17px;
    color: #B3B3B3;
    justify-content: center;
    text-align: start;
}

.overview-photo img {
    height: auto;
    width: 80%;
    border-radius: 20px;
    object-fit: contain;
    animation: drop 1.3s ease;
}


/*    Testing   */
.testing {
    width: 100%;
    flex-direction: column;
    display: flex;
    padding: 40px 60px;
    justify-content: center;
    background-color: #113F48;
}

.test-wrapper {
    width: 100%;
    margin: auto;
}

.testing h1 {
    width: 50%;
    text-align: start;
    font-weight: 500;
    font-size: 30px;
    color: white;
}
.testing p {
    width: 50%;
    text-align: start;
    font-size: 17px;
    color: #B3B3B3;
}

.testing img {
    width: 80%;
    height: auto;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 80px;
}
/*    Competetive Analysis  */

.research {
    width: 100%;
    margin: auto;
    padding-top: 100px;
    position: relative;
    background-color: #ffffff;
}

.research-intro {
    text-align: center;
}

.research-intro h1 {
    text-align: start;
    width: 80%;
    margin: auto;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 40px;
}

.research-intro p {
    text-align: start;
    width: 80%;
    margin: auto;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.863);
}

.research-photo img {
    width: 80%;
    height: auto;
    display: flex;
    margin: auto;
}

.card {
    width: 100%;
    height: auto;
    padding: 100px 0px;
    background-color: #ffffff;
}
.card h1 {
    width: 80%;
    margin: auto;
    margin-bottom: 20px ;
    font-weight: 500;
    text-align: start;
    font-size: 50px;
    color: rgb(0, 0, 0);
}
.card p {
    width: 80%;
    margin: auto;
    font-size: 17px;
    color: rgb(0, 0, 0);
    text-align: start;
}
.card mark {
    color: white;
    font-weight: 300;
    background-color: #3fa4b6;
    padding-right: 8px;
    padding-left: 6px;
    border-radius: 20px;
}
.matrix {
    display: flex;
    margin: auto;
    margin-bottom: 160px;
    margin-top: 160px;
}

.matrix-inner img {
    width: 80%;
    height: auto;
    display: flex;
    margin: auto;
    margin-bottom: 10px;
}

.matrix-inner p {
    width: 60%;
    font-size: 12px;
}

.persona {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 0px;
    background-color: #113F48;
}
.persona h1 {
    width: 80%;
    margin: auto;
    font-weight: 500;
    text-align: start;
    font-size: 50px;
    color: white;
}
.persona p {
    width: 80%;
    margin: auto;
    font-size: 17px;
    color: rgb(255, 255, 255);
    text-align: start;
}
.persona mark {
    color: white;
    font-weight: 300;
    background-color: #3fa4b6;
    padding-right: 8px;
    padding-left: 6px;
    border-radius: 20px;
}
.persona img {
    width: 60%;
    height: auto;
    display: flex;
    margin: auto;
}

.user-journey {
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #113F48;
}
.user-journey h1 {
    text-align: center;
    font-size: 30px;
    color: rgb(255, 255, 255);
}
.user-journey p {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
}
.user-journey img {
    width: 70%;
    height: auto;
    display: flex;
    margin: auto;
    background-color: #113F48;
}

.sitemap {
    padding: 100px 20px;
    background-color: #eaf7fa;
}

.sitemap h1 {
    width: 80%;
    margin: auto;
    text-align: start;
    font-size: 40px;
    color: #000000;
}

.sitemap p {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.863);
}
.sitemap mark {
    background-color: #c3eaf7;
    padding-right: 8px;
    padding-left: 6px;
    border-radius: 20px;
}

.sitemap img {
    width: 80%;
    margin: auto;
    height: 700px;
    object-fit: scale-down;
    display: flex;
    justify-content: center;
    align-content: center;
}

.low-fed {
    padding: 100px 20px;
    background-color: #eaf7fa;
}

.low-fed h1 {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 30px;
    color: #000000;
}

.low-fed p {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.863);
}
.low-fed mark {
    color: rgb(0, 0, 0);
    background-color: #c3eaf7;
    padding-right: 8px;
    padding-left: 6px;
    border-radius: 20px;
}

.low-fed img {
    width: 80%;
    margin: auto;
    height: 700px;
    object-fit: scale-down;
    display: flex;
    justify-content: center;
    align-content: center;
}

.high-fed {
    padding: 100px 20px;
    background-color: #eaf7fa;
}

.high-fed h1 {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 30px;
    color: #000000;
}

.high-fed p {
    margin: auto;
    text-align: start;
    width: 80%;
    color: rgba(0, 0, 0, 0.863);
}

.high-fed mark {
    color: rgb(0, 0, 0);
    background-color: #c3eaf7;
    padding-right: 8px;
    padding-left: 6px;
    border-radius: 20px;
}

.high-fed img {
    width: 80%;
    margin: auto;
    height: 700px;
    object-fit: scale-down;
    display: flex;
    justify-content: center;
    align-content: center;
}

.typography {
    padding: 100px 20px;
    background-color: #ebf7fa;
}
.typography h1 {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 30px;
}
.typography p {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.863);
}
.typography mark {
    color: #108189;
    font-size: 40px;
    background: none;
}
.typography strong {
    color: #000000;
    background-color: #C4EAF8;
    padding-right: 8px;
    padding-left: 8px;
    border-radius: 20px;
    font-weight: 500;
}

.typography img {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.sample {
    padding: 60px 0px;
    display: flex;
    justify-content: space-evenly;
    background-color: #0F3E46;
}



.sample img {
    width: 16%;
    box-shadow: 20px 20px 50px;
    border-radius: 35px;
    object-fit: contain;
}

.isomatric {
    background-color: #113f48;
    padding: 100px 0px;
}

.isomatric h1 {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.301);
}
.isomatric p {
    margin: auto;
    text-align: start;
    width: 80%;
    color: white;
    font-size: 17px;
}

.isomatric img {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.animation {
    width: 100%;
    padding: 60px 0px;
    background-color: #000000;
}

.animation-intro {
    padding-top: 100px;
    justify-content: center;
    background-color: #000000;
}

.animation-intro h1 {
    margin: auto;
    text-align: start;
    width: 80%;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.466);
}

.animation-intro p {
    margin: auto;
    text-align: start;
    width: 80%;
    color: white;
}

.animation-intro mark {
    color: #d6f9ff;
    background-color: #2f9db1;
    padding-right: 8px;
    padding-left: 8px;
    border-radius: 20px;
}

.animation-gif {
    padding-top: 180px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.animation-gif img {
    width: auto;
    box-shadow: 20px 20px 70px;
    border-radius: 50px;
}

.animation-gif h2 {
    font-size: 15px;
    margin-top: 10px;
    color: #ffffff;
    font-weight: 500;
}

.animation-gif p {
    color: #113f48;
    width: 70%;
    margin: auto;
    margin-top: 30px;
    font-size: 15px;
    border: black;
    background-color: #eef7fa;
    border-radius: 50px;
    padding: 15px;
}

/* Retrospective part */
.bottom-bar {
    display: flex;
    padding: 60px 0px;
    background-color: #e2f1f5;
}

.outro1 {
    width: 65%;
    text-align: start;
}

.outro2 {
    display: flex;
    width: 35%;
    margin: auto;
}

.outro2 img {
    width: auto;
    margin: auto;
}

.bottom-bar h1 {
    width: 70%;
    margin: auto;
    font-size: 30px;
    color: rgb(65, 65, 65);
    text-align: start;
    padding-top: 60px;
}

.bottom-bar p {
    width: 70%;
    margin: auto;
    text-align: start;
    font-size: 20px;
    padding-top: 60px;
    color: #2b2b2b;
}


/*    SEE ALSO sections  */
.project-title h1 {
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
    padding-top: 30px;
    color: white;
    background-color: black;
}
.myprojects {
    height: 620px;
    padding-top: 50px;
    background-color: black;
}
.box img {
    max-width: 100%;
    object-fit: contain;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    filter: drop-shadow(
        0px 1px 2px black
    );
}
.myprojects img:hover {
    border: rgb(0, 0, 0);
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
}
.box h5 {
    color: white;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    padding-top: 10px;
}


/*    Footer   */

footer {
    height: 100px;
    /*background-color: rgb(90, 89, 89);*/
    background-color: black;
}

footer span {
    color: white;
    font-size: 13px;
    margin-left: 10px;
}
footer a {
    text-decoration: none;
}

footer span:hover {
    color: rgb(170, 170, 170);
}
footer img {
    width: 16px;
}

.to-top {
    color: #247a8a;
    background-color: white;
    position: fixed;
    bottom: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    pointer-events: none;
    transition: all 0.4s;
    opacity: 0;
    text-decoration: none;
}

.to-top.active {
    bottom: 16px;
    pointer-events: auto;
    opacity: 1;
}


/* To make site responsive for ipades */
/* To make site responsive for ipades */
/* To make site responsive for ipades */
/* To make site responsive for ipades */
/* To make site responsive for ipades */

@media screen and (max-width: 1120px) {
    article {
       
        
    }

    .left-wrapper {
        width: 100%;
        text-align: center;
        justify-content: flex-start;
    }

    .right-wrapper {
        width: 100%;
        margin: auto;
        background-color: #10333A;
    }

    .right-wrapper img {
        width: 450px;
        display: block;
        animation: drop 1.3s ease;
    }

    .left-wrapper p {
        width: 300px;
        margin: auto;
        animation: flyup 1.3s ease;
        text-align: center;
    }

    .research {
        height: auto;
    }
}


    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */




    @media screen and (max-width: 800px) {
       
        nav a {
            padding: 17px;
            font-size: 13px;
        }

        main {
            padding: 0px 0px; 
        }

        .bio-wrapper-two {
            flex-direction: column;
            justify-content: center;
            background-image: linear-gradient(
                #000000, #1f7585  );
        }

        .left-wrapper {
            width: 100%;
            text-align: center;
        }

        .right-wrapper {
            background-color: #12424A;
        }

        .right-wrapper img {
            width: 80%;
            margin: auto;  
            animation: drop 1.3s ease;
        }

        .left-wrapper p {
            width: 300px;
            margin: auto;
            animation: flyup 1.3s ease;
            text-align: center;
            font-size: 15px;
        }

        .icon-container {
            width: 70%;
            margin: auto;
            margin-top: 20px;
            padding-bottom: 0px;
            display: flex;
            justify-content: space-between;
            flex-direction: row;
        }

        .icon-container h4 {
            color: #ffffff;
            font-weight: 400;
            font-size: 10px;
        }

        .icon-container p {
            font-size: 10px;
            width: fit-content;
        }

        .icon-container img {
            height: 60px;
        }


        /*    article for mobiles    */

        article {
            width: 100%;
            margin-top: 0px;
            padding-top: 40px;
            margin-bottom: 0px;
        }

    /*    Overview problem goal for mobiles   */



    .problem {
        width: 100%;
    }
    
    .problem li {
        width: 100%;
    }

    .problem h1 {
        display: none;
    }
    .goal {
        width: 100%;
    }
    .goal li {
        width: 100%;
    }
    .goal h1 {
        display: block;
    }


    .overview {
        flex-direction: column-reverse;
        justify-content: center;
        padding: 40px 0px;
    }

    .overview-intro h6 {
        width: 100%;
        margin: auto;
        text-align: start;
        color: #d7884c;
        font-size: 14px;
    }

    .overview-intro h1 {
        width: 100%;
        margin: auto;
        text-align: start;
        font-weight: 500;
        font-size: 30px;
    }

    .overview-intro {
        width: 100%;
    }

    .overview-photo {
        width: 100%;
        height: auto;
    }
    .overview-intro p {
        width: 100%;
        margin: auto; 
    }

    .overview-photo img {
        width: 100%;
        padding: 10px 0px;
    }

    /*    Testing - on Mobiles   */
    .testing {
        width: 100%;
        flex-direction: column;
        display: flex;
        justify-content: center;
        padding: 40px 0px;
        background-color: #103F49;
    }

    .test-wrapper {
        width: 100%;
        margin: auto;
    }

    .testing h1 {
        width: 90%;
        margin: auto;
        text-align: start;
        font-weight: 500;
        font-size: 25px;
    }
    .testing p {
        width: 90%;
        margin: auto;
        text-align: start;
        font-size: 16px;
    }

    .testing img {
        width: 90%;
        height: auto;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .research-photo img {
        width: 100%;
    }

    .research-intro p {
        max-width: 90%;
        margin: auto;
        text-align: start;
    }

    .research {
        margin-bottom: 0px;
    }
    .research-intro h1 {
        font-size: 50px;
        text-align: start;
        width: 90%;
        margin: auto;
    }

    .card {
        width: 100%;
        padding: 40px 0px;
    }

    .card h1 {
        width: 90%;
        margin: auto;
        font-weight: 500;
        text-align: start;
        font-size: 40px;
        color: rgb(0, 0, 0);
    }
    .card p {
        width: 90%;
        margin: auto;
        font-size: 16px;
        color: rgb(0, 0, 0);
        text-align: start;
    }
    .card mark {
        color: white;
        font-weight: 300;
        background-color: #3fa4b6;
        padding-right: 8px;
        padding-left: 6px;
        border-radius: 20px;
    }
    .matrix {
        display: flex;
        flex-direction: column;
        margin: auto;
        margin-bottom: 40px;
        margin-top: 60px;
    }
    .matrix-inner {
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    .matrix-inner img {
        width: 95%;
        height: auto;
        display: flex;
        margin: auto;
        margin-bottom: 10px;
    }

    .matrix-inner p {
        width: 70%;
        font-size: 12px;
    }

    .persona {
        width: 100%;
        padding-top: 100px;
        padding-bottom: 0px;
        background-color: #247a8a;
    }
    .persona h1 {
        width: 80%;
        margin: auto;
        text-align: start;
        font-size: 30px;
        color: white;
    }
    .persona p {
        width: 80%;
        margin: auto;
        font-size: 14px;
        color: rgb(255, 255, 255);
        text-align: start;
    }
    .persona img {
        width: 90%;
        height: auto;
        display: flex;
        margin: auto;
    }

    .user-journey {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 0px;
        background-color: #247a8a;
    }
    .user-journey h1 {
        text-align: start;
        max-width: 90%;
        margin: auto;
        font-size: 30px;
        color: white;
    }
    .user-journey p {
        font-size: 14px;
        color: rgb(255, 255, 255);
        text-align: start;
    }
    .user-journey img {
        width: 100%;
    }

    .sitemap {
        padding: 40px 20px;
        background-color: #eaf7fa;
    }

    .sitemap h1 {
        width: 90%;
        margin: auto;
        text-align: start;
        font-size: 30px;
        color: #000000;
        margin-bottom: 20px;
    }

    .sitemap p {
        margin: auto;
        text-align: start;
        width: 90%;
        color: rgba(0, 0, 0, 0.863);
    }

    .sitemap img {
        max-width: 100%;
        margin: auto;
        height: 200px;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .low-fed {
        padding: 40px 0px;
        background-color: #eaf7fa;
    }

    .low-fed h1 {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
        text-align: start;
        font-size: 30px;
        color: #000000;
    }

    .low-fed p {
        width: 90%;
        margin: auto;
        text-align: start;
        color: rgba(0, 0, 0, 0.863);
    }

    .low-fed img {
        width: 100%;
        margin: auto;
        height: 300px;
        object-fit: scale-down;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .high-fed {
        padding: 40px 20px;
        background-color: #eaf7fa;
    }

    .high-fed h1 {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
        text-align: start;
        font-size: 30px;
        color: #000000;
    }

    .high-fed p {
        width: 90%;
        margin: auto;
        text-align: start;
        color: rgba(0, 0, 0, 0.863);
    }

    .high-fed img {
        width: 100%;
        margin: auto;
        margin-top: 30px;
        height: 200px;
        object-fit: scale-down;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .typography {
        background-color: #ebf7fa;
    }

    .typography h1 {
        width: 90%;
        margin: auto;
        text-align: start;
        font-size: 30px;
        margin-bottom: 20px;
    }
    .typography p {
        width: 90%;
        margin: auto;
        text-align: start;
        color: rgba(0, 0, 0, 0.863);
    }

    .typography img {
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    .sample {
        padding: 40px 0px;
        flex-direction: column;
        align-items: center;
        background-color:#12424A;
    }

    .sample img {
        width: 55%;
        margin: 30px 0px;
        border-radius: 30px;
    }

    .isomatric {
        padding: 40px 0px;
        background-color: #103F49;
    }
    .isomatric h1 {
        width: 90%;
        text-align: start;
        margin: auto;
        margin-bottom: 20px;
        font-size: 50px;
        color: white;
    }
    .isomatric p {
        text-align: start;
        width: 90%;
        margin: auto;
        color: white;
    }

    .isomatric img {
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .animation {
        width: 100%;
        padding: 0px 0px;
        background-color: #ecf7fa;
    }

    .animation-intro {
        width: 100%;
        margin: auto;
        padding-top: 40px;
        text-align: center;
        justify-content: center;
        background-color: #000000;
    }

    .animation-intro h1 {
        width: 90%;
        margin: auto;
        text-align: start;
        font-size: 30px;
        margin-bottom: 20px;
    }
    .animation-intro p {
        width: 90%;
        margin: auto;
        text-align: start;
    }

    .animation-gif {
        padding-top: 40px;
        flex-direction: column;
        display: flex;
        justify-content: space-evenly;
        background-color: #000000;
        
    }

    .animation-gif img {
        width: 70%;
    }

    .animation-gif h2 {
        font-size: 15px;
        color: #ffffff;
    }

    .animation-gif p {
        color: white;
        width: 70%;
        margin: auto;
        margin-top: 30px;
        font-size: 15px;
        border: black;
        background-color: #75eaff48;
        border-radius: 50px;
        padding: 15px;
    }

    .gif {
        padding: 60px 0px;
    }

    .bottom-bar {
        flex-direction: column;
    }

    .outro1 {
        width: 95%;
        text-align: start;
    }

    .outro2 {
        display: flex;
        width: 35%;
        margin: auto;
    }

    .outro2 img {
        width: 90%;
        padding: 60px 0px;
    }

    .bottom-bar h1 {
        width: 90%;
        margin: auto;
        font-size: 25px;
        color: black;
        text-align: start;
        padding-top: 40px;
    }

    .bottom-bar p {
        width: 90%;
        margin: auto;
        text-align: start;
        font-size: 17px;
        padding-top: 30px;
        color: #195560;
    }

    footer {
        height: 100px;
        margin-top: 100px;
        display: flex;
    }

    .contact {
        height: 60%;
        margin: auto;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        margin-left: 30px;
    }
    .contact1 {
        width: 300px;
        display: flex;
        height: auto;
    }

    .contact2 {
        width: 300px;
        display: flex;
        height: auto;
    }

    .contact3 {
        width: 300px;
        display: flex;
        height: auto;
    }

    .contact p {
        color: white;
        font-size: 13px;
    }
    .contact a {
        text-decoration: none;
    }
    .contact p:hover {
        color: rgb(170, 170, 170);
    }
    .contact img {
        width: 15px;
        height: auto;
        margin-right: 20px;
    }

    .to-top {
        color: #247a8a;
        background-color: white;
        position: fixed;
        bottom: 16px;
        right: 32px;
        width: 50px;
        height: 50px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        pointer-events: none;
        transition: all 0.4s;
        opacity: 0;
        text-decoration: none;
    }

    .to-top.active {
        bottom: 15px;
        pointer-events: auto;
        opacity: 1;
    }
}
