* {
    margin: 0;
    padding: 0;
}


.container {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    width: 100%;
    padding: 0 0px 20px;
    border-bottom: 1px solid #ccc;

}

.header-nav {
    display: flex;
    padding: 20px 0;       
    width: 500px; 
    justify-content: center;
    align-items: center;
}

.header-nav-ul {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
}

.header-nav-ul-a {
    display: flex;
    text-decoration: none;
    list-style-type: none;
    margin: 0;
    color: #000;
}


.main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
    background-image: url(./img/loro_products.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center ;
}

.short-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 550px 0 0;
    
}

.short-desc h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

footer {
    background-color: rgb(25, 209, 1);
    width: 100%;
}