@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
margin:0; 
padding:0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
text-decoration: none;
list-style: none;
}

body {
    background: rgb(255,224,190);
background: radial-gradient(circle, rgba(255,224,190,0.8352591036414566) 0%, rgba(67,153,143,0.3310574229691877) 100%);
}

nav {
    border-bottom: 3px solid #333;;
    background: #cdcdd4;
    height: 80px;
    width: 100%;
}

nav .logo {
    position: relative;
    top: 10px;
    margin: 20px;

}

nav ul {
    float: right;
    margin:20px;

}
nav ul li {
   display: inline-block;
   line-height: 80px;
   margin: 0 5px;
}

nav ul li a {
    color: #333;
    font-size: 15px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
}

a:active, a:hover {
    color: #43998f;
    transition: .4s;

}

.content {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .content .textbox {
        position: relative;
        bottom: 60px;
        max-width: 600px;
        margin:40px;
    }

    .content .textbox h1 {
        margin-top: 5px;
    color: #333;
    font-size: 3em;
    line-height: 1.7em;
    font-weight: bold;
    
    }
    
    .content .textbox h1 span {
        color:#43998f;
        text-shadow: 5px 4px 2px rgba(0,0,0,0.33);
        font-size: 1.2em;
        font-weight: 900;
    }
    
    .content .textbox .conteudo {
    color: #333;
    margin-top: 20px;
    }
    .content .textbox a {
        display: inline-block;
        margin-top: 20px;
        margin-left: 100px;
        padding: 8px 20px;
        background: #43998f;
        color: #fff;
        border-radius: 40px;
        font-weight: 500;
        letter-spacing: 1px;
        text-decoration: none;
    }
    .content .textbox a:hover {
        background-color: #fff;
        border: solid #333 1px;
        color: #43998f;
    }
    
    .content .imgprincipal {
        width: 600px;
        display: flex;
        justify-content: flex-end;
        
    }

    footer {
        text-align: center;
    }
    