* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
    margin: 0px;
}

html {
    background-color: #f0f0f0;
}

#container {
    text-align: center;
    margin: 15px 30px;
}

.longtext {
    display: flex;
    text-align: center;
    margin: 10px 250px;
}

.text {
    text-align: center;
    margin: 20px 0px;
}

#cards{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 400px;
    height: 400px;
    margin: 10px;
    padding: 0px 40px;
}

.conteudo {
    text-decoration: none;
}

.card-text1 {
    color: white;
    background-color: #ffa600;
}

.card-text2 {
    color: #000;
    background-color: #fff;
}

#rodape {
    margin-top: 50px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgb(40, 40, 40);
    color: white;
}

#rodape a {
    color: rgb(182, 255, 231);
}