html {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 62.5%;
}

:root {
    --main-bg-color: #000000e6;
    --sec-bg-color: #008f39f1;
    --p-bg-color: #4e4e4e;
    --text-color: #061308;
    --wtext: #fff
}

body {
    background-color: #050505ec;
}

.name {
    font-family: cursive;
    color: ghostwhite;
    height: .1px;
    margin-bottom: 1.3rem;
    font-size: 1.5rem;
}

header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

header img {
    width: 10rem;
    height: 10rem;
    display: inline-block;
}

.titulo {
    background: var(--sec-bg-color);
    color: #fff;
    width: 90%;
    text-align: center;
    border: solid #050f09 2px;
    border-radius: 10px;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 2.8rem;
}

.desktop {
    display: flex;
    justify-content: center;
}

.desktop-img {
    width: 100rem;
    height: 60rem;
}


.textos {
    margin-right: 10vw;
    margin-left: 10vw;
    font-size: 1.6rem;
    margin-bottom: 4rem;
}

.emotion {
    font-size: 4rem;
    color: var(--sec-bg-color);
}

h3 {
    padding-top: 1rem;
    color: #fff;
    font-size: 2.3rem;
}

p {
    background: var(--p-bg-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 2rem;
}

main p {
    border-radius: .5rem;
}

.init {
    margin-bottom: 3rem;
}

.work {
    margin-bottom: 3rem;
}

p::selection {
    color: #457457;
    background: black;
}

code {
    background-color: #35343d;
    color: green;
}

code::selection {
    background: green;
    color: black;
}

.list {
    list-style: none;
    color: #194d19;
}

footer {
    background: var(--sec-bg-color);
    height: 2%;
    text-align: start;
    width: 100%;
    padding: 2rem;
    font-size: 1.8rem;
    color: #000000;
}

footer h4 {
    width: 100;
    margin-top: 2rem;
    font-size: 2rem;
    text-align: start;
    font-weight: 500;
}

footer h4 a {
    font-size: 1.6rem;
}

footer::selection {
    background: black;
    color: #457457;
}

.facebul {
    color: #000000;
    text-decoration: none;
}

.fab {
    color: #88ff00;
    padding-right: .5rem;
    padding-top: .5rem;
}

@media (max-width: 800px) {
    .desktop-img {
        width: 50rem;
        height: 30rem;
    }
}

@media (min-width: 300px) and (max-width:500px) {
    p {
        font-size: 1.6rem;
    }

    .desktop-img {
        width: 35rem;
        height: 30rem;
    }

    main {
        margin-right: 2rem;
        margin-left: 2rem;
        font-size: 1.6rem;
    }

    header {
        width: 96%;
    }

    header img {
        width: 8.5rem;
        height: 8.5rem;
    }
}