@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Montserrat&family=Montserrat+Subrayada&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	font-family: 'Montserrat', sans-serif;
}

body {
	width: 100%;
    height: 100%;
    background-color:rgb(250, 250, 244);
	justify-content: space-around;
	align-items: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.container {
	display: flex;
}

main {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.caixa-grande {
    color:rgb(90, 92, 92);
    flex-direction: column;
    justify-content: space-around;
    width: 90%;
    min-width: 400px;
    background-color:rgba(255, 255, 255, 0);
    padding: 5px
}

.caixa-artigo {
    color:rgb(90, 92, 92);
    flex-direction: column;
    justify-content: space-around;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #bdbdbd;
    padding: 20px;
    margin: 20px 0;
    width: 80%;
    min-width: 400px;
    background-color:rgb(255, 255, 255);
}

.img-artigo {
    width: 80%;
    min-width: 400px;
    border-radius: 5px;
}

h1 {
    font-size: 1.5em;
    font-weight: bolder;
}

h2 {
    font-size: 1.5em;
    font-weight: bolder;
}

h3 {
    font-size: 1.5em;
    font-weight: bolder;
    margin: 15px 0;
}

h4 {
    font-size: 1em;
    font-weight: bolder;
    margin: 15px 0;
}

hr {
    margin: 15px 0;
}

li {
    margin: 10px;
}

.table-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow-x: auto;
  }

  table {
    width: 360px;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 10px;
    border: 1px solid #000;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px #bdbdbd;
  }

  th, td {
    border: 1px solid #000;
    padding: 4px;
    text-align: center;
    word-wrap: break-word;
  }

  th {
    background-color: #f0f0f0;
    font-weight: bold;
  }

#intro {
    margin: 50px 0;
    font-size: 1em;
    padding: 20px;
}

.blocao {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

footer {
    width: 100%;
    text-align: center;
    color:#6a6a6a;
    background-color: #4d4d4f;
    flex-direction: column;
    align-items: center;
    padding: -5px 5px 5px 5px;
    flex-grow: 0;
    align-self: flex-end;
    position: relative;
    bottom: 0;
}

.footer-link {
    color: #9a9c9c;
    font-size: 1em;
    text-decoration: none;
    padding: 0 10px 15px 10px;
}

.footer-cont {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 10px 110px 0 110px;
}