*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    min-height: 100vh;  
}

header{
    display: flex;
    width: 100%;
    background-color: #242424;
    align-items: center;
    gap: 90px;
    padding-left: 20px;
}

header input{
    width: 80%;
    height: 35px;
}

header button{
    width: 100px;
    height: 35px;
}

main{
    margin: 20px;
    flex-grow: 1;
}

div{
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}


div img{
    height: 500px;

}

div p{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #242424;
    color: #fafafa;
    height: 40px;
}


footer{
    background-color: #242424;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fafafa;
    height: 60px;
}

@media (max-width: 768px){
    header{
        gap: 5px;
    }
}