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

body{
    font-family: sans-serif;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div-top-conteiner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 10px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.411);
}

.div-covid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.div-cariers{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 18%;
}

.div-covid p{
    font-size: 13px;
}

.div-cariers p{
    font-size: 14px;
    cursor: pointer;
}

.Language{
    font-weight: 800;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 15px;
    
}

.title-menu-conteiner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    cursor: pointer;
}

.title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 10%;
    gap: 10px;
}

h1{
    color: rgb(214, 3, 3);
}

.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    list-style-type: none;
    font-weight: 800;
    color: rgb(49, 2, 2);
    cursor: pointer;
}

.nav-btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 20%;
}

.nav-btn button{
    border: none;
    border-radius: 30px;
    padding: 13px 20px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
}

/* section */

main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.top-section{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 98%;
    height: 500px;
    background-color: black;
    margin: 20px;
    background-image: url(image/dog-5357794_640.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center ;
}

.top-section div{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 22%;
    margin: 0 200px;
    gap: 10px;
}

.top-section div h2{
    font-size: 35px;
    color: #fff;
    padding: 10px;
    
}

.top-section div p{
    color: #fff;
    font-size: 14px;
    padding: 10px;
}

.top-section div button{
    border: none;
    border-radius: 30px;
    padding: 13px 20px;
    font-size: 14px;
    cursor: pointer;
    background-color: rgb(243, 130, 0);
    color: #fff;
    margin: 10px;
}

.section-info{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding-bottom: 100px;
}

.section-info div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 15%;
    gap: 20px;
}

.section-info div p{
    font-size: 17px;
    color: rgb(214, 3, 3);
    font-weight: 800;
    width: 50%;
    text-align: center;
}

.section-info div button{
    border: solid 1px rgb(214, 3, 3);
    border-radius: 30px;
    padding: 13px 20px;
    font-size: 14px;
    cursor: pointer;
    background-color: #fff;
    color: rgb(214, 3, 3);
   
}