* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Ubuntu", sans-serif;

}

header {
    background: linear-gradient(40deg,rgba(50, 77, 232, 0.807),rgba(36, 226, 163, 0.84));
    height: 10vh;
    line-height: 10vh;
    align-items: center;
    justify-content: center;
}

header nav .navbar{
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
}

.navbar .logo {
    font-size: 1rem;
    font-weight: 600;
}

.navbar .nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar .nav ul li a {
    text-decoration: none;
    font-size: 1.5rem;
}

/* main  */

main .first-page {
    width: 100%;
    height: 90vh;
    display: flex;
    padding: 12rem 4rem 0 4rem;
    justify-content: space-between;
    background-color: aqua;
}

.first-page .content {
    width: 45%;
    height: 50vh;
    align-items: center;
    /* background-color: aqua; */
}

.content h2 {
    font-size: 3rem;
}

.content p {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.content a {
    position: relative;
    top: 4rem;
    left: 0;
    text-decoration: none;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: rgb(61, 61, 250);
    color: #fff;
    transition: .5s ease;
}

.first-page .hero {
    width: 500px;
    height: 400px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.hero img {
    width: 500px;
    text-align: center;
}

.effect-right {
    opacity: 0;
    transform: translateX(360px);
    animation: moveright 0.8s linear forwards;
}

@keyframes moveright {
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

.effect-left {
    opacity: 0;
    transform: translateX(-360px);
    animation: moveleft 0.8s linear forwards;
}

@keyframes moveleft {
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Second Section */

main .second{
    position: relative;
    width: 100%;
    height: 100vh;
    align-items: center;
    background-color: blueviolet;
}

.second .second-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 15rem;
    left: 0;
    background-color: #696666;
    padding: 2rem 10rem;
}

.second-row h2 {
    font-size: 2rem;
}

.second-row p {
    margin: 1rem 0 0 0;
    text-align: center;
}

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

.second .other {
    position: relative;
    top: 18rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin: 0 0 0 40%; */
}

.other h3 {
    font-size: 2rem;
    text-align: center;
}

.other p {
    text-align: center;
    margin-top: 0.5rem;
}

.other .p1 {
    margin: 1.5rem 0 0 0;

}

.p2::before {
    content: "- ";
}

.p4::before{
    content: "- ";
}

.p2,
.p4 {
    font-style: italic;
}

/* Footer */

footer {
    background: linear-gradient(40deg,rgba(50, 77, 232, 0.807),rgba(36, 226, 163, 0.84));
    width: 100%;
    height: 8vh;
    line-height: 8vh;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
}

.navegetion ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navegetion ul li a {
    text-decoration: none;
}

.effect {
    opacity: 0;
    transform: translateY(-90px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.effect-down {
    opacity: 0;
    transform: translateY(90px);
    animation: movedwon 0.5s linear forwards;
}

@keyframes movedwon {
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}