@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

.home {
	width: 100%;
	height: 100vh;
}

body {
    margin: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    background-color:  hsl(212, 45%, 89%);
}

div.container {
	max-width: none;
	width: 470px;
}

.caixa {
	background-color: white;
	border-radius: 20px;
	padding-top: 15px;
}

img {
	width: 100%;
	border-radius: 10px;
}

h1 {
	font-size: 20px;
	color: hsl(218, 44%, 22%);
	font-weight: 700;
	padding-top: 25px;
}

p {
	font-size: 15px;
	color: hsl(220, 15%, 55%);
	padding-top: 10px;
	padding-bottom: 25px;
}

.texto {
	margin-left: 10px;
	margin-right: 10px;
}

footer {
	background-color: #2d7dfa;
    text-align: center;
    color: hsl(212, 45%, 89%);
}

footer a {
    font-family: "Outfit";
    color: white;
}

footer a:hover {
	color: white;
}

i {
	padding-right: 5px;
}




