@import url("header.css");

@media(min-width: 1024px) {
    section {
        display: flex;
        justify-content: space-between;
    }

    #text {
        width: 90%;
        padding: 20px;
    }
}

@media(max-width: 1023px) {
    section {
        display : flex;
        flex-direction: column;
        justify-content: center;
        
        
    }
    #text {
        width: 100%;
        text-align: center;
        margin-top : 50px;
        margin-bottom : 50px;
    }

    h1 {
        margin-bottom : 20px;
    }

    img { 
        width : 100%;
    }

    #footer {
        margin-bottom : 50px;
    }

}