body {
    margin: 0px;
    position: relative;
}

html {
    scrollbar-color: rgb(255, 200, 0) rgb(38, 38, 49);
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.menu li {
    list-style-type: none;
}

.menu li a {
    text-decoration: none;
}

.inicio {
    transition: all 0.3s ease-in-out;
}

.inicio {
    width: 100px;
    height: 50px;
    border-radius: 50px;
    background-image: linear-gradient(180deg, red, orange);
    cursor: pointer;
    box-shadow: 0 4px 15px -6px red;
    border: none;
    margin-top: 20px;
    font-size: 20px;
    color: white;
}

.inicio:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.inicio:active {
    opacity: 0.5;
}

.sobre {
    transition: all 0.3s ease-in-out;
}

.sobre {
    width: 100px;
    height: 50px;
    border-radius: 50px;
    background-image: linear-gradient(180deg, red, orange);
    cursor: pointer;
    box-shadow: 0 4px 15px -6px red;
    border: none;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 20px;
    color: white;
}

.sobre:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.sobre:active {
    opacity: 0.5;
}

html {
    background-color: rgb(26, 27, 39);
}

.menu {
    background-color: rgb(26, 30, 43);
    width: 100%;
    height: 100px;
    display: flex;
    position: fixed;
    box-shadow: 0 10px 10px -6px rgb(0, 0, 0);
    justify-content: space-around;
    top: 0;
    z-index: 1000;
}

.title {
    font-size: 50px;
    color: rgb(241, 255, 236);
    font-family: monospace;
}

.conteudo {
    display: flex;
    gap: 20px;
    margin-left: 20px;
    /* margin-top: 100px; */
}

.conteudo img {
    width: 400px;
    height: 450px;
    margin-top: 180px;
    box-shadow: 0 0 10px 5px rgb(48, 49, 54);
    margin-left: 300px;
    display: block;
    transition: transform 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
}

.conteudo img:hover {
    transform: translateY(5px);
    box-shadow: 0 0 10px 5px rgb(94, 95, 99);
}



.feitos {
    transition: all 0.3s ease-in-out;
}

.feitos {
    width: 100px;
    height: 50px;
    border-radius: 50px;
    background-image: linear-gradient(180deg, red, orange);
    cursor: pointer;
    box-shadow: 0 4px 15px -6px red;
    border: none;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 20px;
    color: white;
}

.feitos:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.feitos:active {
    opacity: 0.5;
}

.p1 {
    font-size: 24px;
    margin-right: 10px;
    margin-top: 250px;
    background-color: rgb(237, 238, 233);
    border-radius: 10px;
    padding: 20px;
    width: 700px;
    height: 300px;
    color: rgb(110, 114, 110);
    border-left: 20px solid rgb(122, 11, 11);
}

.menu img {
    padding: 15px;
}

.fim {
    background-color: rgb(226, 230, 224);
    height: 400px;
    border-style: solid;
    border-color: rgb(201, 201, 201);
    position: relative;
    margin-top: 50px;
}

.github,
.video {
    margin-top: 90px;
    border-radius: 150px;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out;
}

.github:hover,
.video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 10px -6px rgb(59, 58, 63);
}

.fim ul {
    margin-top: 50px;
    font-size: 24px;
    list-style: none;
    color: rgb(26, 27, 39);
}

.fim h1 {
    margin-top: 60px;
    color: rgb(26, 27, 39);
}

.fim p {
    color: rgb(103, 101, 120);
}

@keyframes mudarCor {
    0% {
        color: #ff0000;
    }

    33% {
        color: #ff8800;
    }

    66% {
        color: #ffd900;
    }

    100% {
        color: #fbff00;
    }
}


.conteudo2,
.texto1,
.texto2,
.texto3,
.texto4 {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
}

.conteudo2 h1 {
    animation: mudarCor 3s linear infinite alternate;
    font-size: 90px;
}

.img1 {
    position: absolute;
    right: -300px;
}

.img2 {
    position: absolute;
    left: -300px;
}

.linha,
.linha-invertida {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.linha-invertida {
    flex-direction: row-reverse;
}

.texto1 h2,
.texto2 h2,
.texto3 h2,
.texto4 h2 {
    font-size: 30px;
    color: #b7baca;
    font-family: monospace;
}

.texto1 p,
.texto2 p,
.texto3 p,
.texto4 p {
    font-size: 26px;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 25px;
    width: 750px;
    min-height: 200px;
    color: #2b2b2b;
    border-left: 15px solid #7a0b0b;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.texto1 p:hover,
.texto2 p:hover,
.texto3 p:hover,
.texto4 p:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 30px rgba(187, 1, 1, 0.4);
}

.img1,
.img2 {
    animation: flutuarSuave 3s ease-in-out infinite;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.9);
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flutuarSuave {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.fim2 p {
    color: rgb(103, 101, 120);
    text-align: center;
}

.conteudo3,
.info1-container,
.info,
.infop {
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
}

.conteudo3 {
    flex-direction: column;
    gap: 20px;
    margin-top: 200px;
    text-align: center;
}

.conteudo3 h1 {
    animation: mudarCor 3s linear infinite alternate;
    font-size: 90px;
}

.conteudo3 h2 {
    font-size: 28px;
    color: #b7baca;
    font-family: monospace;
    margin-top: 10px;
}

.info1-container {
    background-color: rgb(20, 21, 30);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border: 2px solid #101013;
    border-radius: 12px;
    flex-wrap: wrap;
}

.info {
    border: 2px solid #2b2b2b;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.infop {
    font-size: 22px;
    background-color: rgb(245, 245, 245);
    border-radius: 12px;
    padding: 25px;
    max-width: 500px;
    width: 100%;
    color: rgb(90, 95, 90);
    border-left: 15px solid rgb(122, 11, 11);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.infop:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(187, 1, 1, 0.4);
}

.fim3 p {
    color: rgb(103, 101, 120);
    text-align: center;
    margin-bottom: -20px;
}