/* @media(max-width:600px){
    img{
        width: 200px;
        height: 200px;
    }
    #inicio{
        width: 500px;
    }
}
@media(max-width:800px){
    img{
        width: 300px;
        height: 300px;
}
} */
body {
    background-image: url('imageApod.jpeg');
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    color: blue;
    font-style: italic;
    
}

header {
    color: rgb(255, 255, 255);
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    height: 80%;
}

#displayNasa{
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    width: 100%;
    height: 20%;
    background-color: rgb(0, 0, 0, 0.9);
    color: rgb(255, 255, 255);
}