
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
	background-image: linear-gradient(#f857a6,#ff5858);

}

nav {
   background: #ed145b;
   height: 80px;
   width: 100%;
}

nav ul {
    float: right; /*colocar o menu pro lado direito*/
    margin-right: 20px;
    
}

label.logo {
    color: #fff;
    font-size: 35px;
    line-height: 80px; /*pesquisar depois*/
    padding: 0 100px;
    font-weight: bold; /*pesquisar depois*/

}





nav ul li {
    display: inline-block; /*coloca um do lado do outro em uma unica linha */
    line-height: 80px;
    margin: 0 10px;

}

nav ul li a {
    color: #fff;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;

}


.img img {
    display: flex;
    height: 100%;
    width: 70;
 padding-top: 20px;
    
    

}

.img{
    height: 100%;
}






.con {

    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 1px 0px 3px 0px black;
    height: 20vh;
    
    
 color: #343A40;
}

.con h2 {
	margin-right: 50px;
	margin-left: 40px;
	font-family: Cambria, Cochin, serif;
  
}

.con img {
   width: 80px;

}

.imgc img {
	display: flex;
	align-items: center;
	justify-content: center;
	
	border-radius: 10px;
	margin: auto;
}

.lista  h1  {

	display: flex;
	margin: 40px;
	 
	}

.lista li {

font-size: 30px; 
padding-left: 2rem;
}


.tela {
	margin: auto;
	max-width: 1100px;
	 width: 100%;
	 justify-content: space-between;
	 align-items: center;
	 display: flex;
 
	
 }

footer {
    background-color: rgb(176, 115, 233);
    border-radius: 10px;
padding: 30px;
height: 300px;

    
}

form {

    background-color: aliceblue;
    
    text-align: center;
    border-radius: 10px;
    height: auto;
}

form h1 {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 10px;
    font-size: 15px;
    
}

input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid grey;
    padding: 10px;
}

.hg {
    text-transform: uppercase;
    font-weight: 300px;
    padding: 20px;
    background-color:#e45259;
    margin-bottom: 10px;
    border-radius: 10px 10px 0px 0px;
}

.botao {
    width: 50%;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.incos i {
    cursor: pointer;
    
    font-size: 50px;
    margin-left: 50px;
    color: antiquewhite;
    margin-top: 20px;
}

.incos  h1 {

    color: antiquewhite;
}

.incos i:hover {
    
    color: #df9ca5;

}





a.active,a:hover {
     background: #9e999b;
     transition: .5s;
}


.checkbtn {
	font-size: 30px;
	color: white;
	float: right;
	line-height: 80px;
	margin-right: 40px;
	cursor: pointer;
	display: none;
}

#check {
	display: none;
}

@media (max-width: 952px){
	label.logo{
		font-size: 30px;
		padding-left: 50px;
	}
	nav ul li a{
		font-size: 16px;
	}
} 

@media (max-width: 858px){
	.checkbtn {
		display: block;
	}
	ul{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #1d075f;
		top: 80px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}
	nav ul li{
		display: block;
		margin: 50px 0;
		line-height: 30px;
	}
	nav ul li a {
		font-size: 20px;
	}
    footer {
        flex-direction: column;
        display: block;
        
    }
    
	a:hover, a.active {
		background: none;
		color: #5434af;
	}
	#check:checked ~ ul {
		left: 0;
	}
}