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

}
a{
    text-decoration: none;
    color: inherit;
}
ul, ol, li{
    list-style: none;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-inline: 80px;
    background-color: black;
}
header{
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.logo{
    height: 150px;
    width: 150px;
    background-image: url(pngegg.png);
    background-size: 100%;
    background-repeat: no-repeat;
}
.menu ul{
    display: flex;
    gap: 32px;
    font-size: 32px;
}
main{
    flex-grow: 1;
    display: flex;
}
.conteudo{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.conteudo h1{
    font-size: 96px;

}
.conteudo p{
    width: 80%;
    font-size: 40px;
}
.acao button {
    height: 80px;
    width: 300px;
    background-color: rgb(125, 0, 0);
    color: white;
    font-size: 32px;
}
.social{
    width: 80%;
    display: flex;
    justify-content:  space-between;
}
.social div{
    height: 96px;
    width: 96px;
    background-color: lightgrey;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.imagem1{
    background-image: url(Instagram_icon.png);
}
.imagem2{
    background-image: url(facebook-13.png);
}
.imagem3{
    background-image: url(youtube-logo-youtube-logo-transparent-youtube-icon-transparent-free-free-png.webp);
}
.destaque{
    width: 50%;
    background-image: url(bore.jpeg);
    background-repeat: no-repeat;
    background-size: 100%;
}
footer{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
h1{
    color: white;
}
p{
    color: white;
    font-family: fantasy;
}
li{
    color: white;
    font-style: italic;
}
