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

    font-family: Arial, sans-serif;
}

body {
    background-color: #084f10;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    padding: 20px;    
    color: #ffffff;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align:center;
}

a {
    color: #ffffff;
}

a:hover {
    color: gray;
}

img {
    max-width: 30%;
    height: auto;
    margin-bottom: 50px;
}

#interesse {
    margin-top: 40px;
    font-size: 1.2em;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}