*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: auto;
    width: 100%;
}
header{
    width: 100%;
    height: 100px;
}
main{
    height: auto;
    width: 100%;
}


header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
#nome {
    padding: 10px;
    font-size: 16px;
}
#btn {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    background-color: #ff000d;
    color: white;
    border: none;
}
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.container img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}