body {
    width: 100vw;
    height: 100vh;
}

.home {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;

}

nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 13vh;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
    padding-right: 5%;
    border: 1px solid rgba(255, 255, 255, 0.199);
    background-color: rgb(255, 255, 255);
    z-index: 1;

    & .menu-toggle {
        display: none;
    }


    & .img {
        display: flex;
        justify-content: center;
        align-items: center;


        & img {
            width: 15%;
            margin-right: 20px;
            border-radius: 50%;
        }

        & .name:hover {
            transform: scale(1.1);
            color: rgb(148, 0, 234);
        }

    }



    & a {
        color: rgb(0, 0, 0);
        padding: 5px;
        transition: all 600ms;
        font-size: 12pt;
        font-family: 'Source Sans Pro', sans-serif;
        line-height: 1.5;
        margin-right: 30px;

    }


    & .links a:hover {
        transform: scale(1.1);
        color: rgb(242, 242, 242);
        background-color: rgb(148, 0, 234);
        border-radius: 5px;
        box-shadow: 1px 1px 20px rgba(255, 255, 255, 0.356);
    }


    & img:hover {
        box-shadow: 1px 1px 20px white;
        transition: all 300ms;
    }
}

.home .containerNome {
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    & h1 {
        color: rgb(0, 0, 0);
        font-size: 4rem;
        text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.329);
        animation: fade 4s;
        font-weight: 800;
        font-family: 'Source Sans Pro', sans-serif;
        margin-bottom: 2%;
        width: 60%;
    }

    .digitando::after {
        content: '|';
        animation: blink 0.7s infinite;
    }



    & h2 {
        color: rgb(0, 0, 0);
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 16pt;
        animation: fade 6s;
        font-weight: 400;
    }



}

.home .icons {
    width: 100vw;
    height: 15vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    animation: fade 8s;



    & p {
        margin: 20px;
        color: rgb(253, 253, 253);
        font-size: 30pt;
        cursor: pointer;
        transition: all 600ms;
        padding: 5px;
    }

    & p:hover {
        transform: scale(1.1);
        color: black;
        background-color: rgb(148, 0, 234);
        border-radius: 5px;
        box-shadow: 1px 1px 20px rgba(255, 255, 255, 0.356);
    }

    & button {
        padding: 10px;
        font-size: 12pt;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        background-color: rgb(148, 0, 234);
        color: white;

    }

    & button:hover {
        transform: scale(1.1);
        color: rgb(255, 255, 255);
        border-radius: 5px;
        box-shadow: 1px 1px 20px rgb(148, 0, 234);
        transition: all 600ms;
    }


}

.shadow-bottom {
    position: relative;
    z-index: 1;
}

.shadow-bottom::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 30px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
    z-index: -1;
}


@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}