/*@media screen and (orientation: portrait)
@media screen and (orientation: landscape)*/

/* MENU Portátil */

/* MENU Landscape */

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    scrollbar-color: #ffffff #ffffff;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 9px;
    height: 25vh;
}

::-webkit-scrollbar-track {
    background-color: #ffffff;
}

::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover {
    background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3013de, #57008e);
    height: 25vh;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #57008e;
}

::-webkit-scrollbar-thumb:active {
    background-color: #57008e;
}

body {
    overflow-x: hidden;
    margin: 0;
    background-color: #ffffff;
}

main {
    height: 100vh;
}

div#ladoesquerdo {
    background-color: #3013de;
    animation: mudancadecorbackground 2.5s linear infinite;
    background-size: 100%;
}

div#ladoesquerdo h1 {
    color: #ffffff;
    font-family: Poppins;
}

div#ladoesquerdo h2 {
    color: #ffffff;
    font-family: Mulish;
}

div#chamadaparaacao {
    background-image: linear-gradient(to bottom right, #ffffff, #fafafa);
    border-radius: 50em;
}

div#chamadaparaacao:hover {
    cursor: pointer;
}

a.botaoparaacao {
    color: #3013de;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Poppins;
}

div#ladodireito {
    background-color: #fafafa;
    display: flex;   
}

section#sobremim {
    /*height: 100vh;*/
    background-color: #fafafa;
    padding: 1vh 1vh 1vh 1vh;
    text-align: justify;
}

section#sobremim h2 {
    font-family: Mulish;
    margin-top: 0px;
}

section#sobremim h3 {
    font-family: Mulish;
    margin-bottom: 0px;
}

section#projetos {
    background-color: #3013de;
    animation: mudancadecorbackground 2.5s linear infinite;
    background-size: 100%;
}

section#projetos h3 {
    color: #ffffff;
    font-family: Poppins;
}

section#projetos h4 {
    color: #ffffff;
    font-family: Mulish;
}

section#projetos a {
    color: #ffffff;
}

section#contato {
    /*height: 100vh;*/
    background-color: #fafafa;
    margin: 0px;
}

section#contato h2 {
    font-family: Mulish;
    text-align: center;
    margin: 0px;
    color: #57008e;
}

section#contato h3 {
    font-family: Mulish;
    text-align: center;
    margin: 0px;
}

section#contato h4 {
    font-family: Mulish;
    text-align: center;
    margin: 0px;
}

form {
    font-family: Mulish;
}

form a {
    color: #57008e;
    text-decoration: none;
    font-weight: bold
}

input:focus, textarea:focus {
    outline: none;
}

input[type=text], input[type=email]{
    font-family: Mulish;
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: #fafafa;
    border-color: #57008e;
}

input[type=button] {
    margin: auto;
    color: #fafafa;
    background: #57008e;
    border: none;
    font-family: Mulish;
    animation: mudancadecorbackground 2.5s linear infinite;
}

textarea {
    font-family: Mulish;
    width: 100%;
    background-color: #fafafa;
}

footer#footer {
    display: flex;
    background-color: #3013de;
    animation: mudancadecorbackground 2.5s linear infinite;
    background-size: 100%;
    height: 10vh;
    justify-content: center;
    align-items: center;
}

footer#footer h3 {
    text-align: center;
    color: #fafafa;
    font-family: Mulish;
}

h3, h4 {
    font-weight: 400;
}

/* animations */ 
@keyframes mudancadecorbackground {
    0% {
        background: #57008e;
    }   
    50% {
        background-color: #3013de;
    }
    100% {
        background-color: #57008e;
    }
}

@keyframes showimg {
    0% {
        margin-top: -15vh;
        transform: scale(0.7);
        opacity: 0%;
    }
    100% {
        margin-top: 0vh;
        transform: scale(1);
        opacity: 100%;
    }
}