/* Style Sheet index.html */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

html { 
    background-color: #f2f2f2;
    font-size: 1.375rem;
}

body {
  background-color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  max-width: 1100px;
  min-height: 100svh;
 }
	
 nav {
	background-color: #f2f2f2;
	height: 50px;
	width: 100%;
	}
	
ul li {
	display: inline-block;
	float: right;
	line-height: 50px;
	list-style: none;
}
	
ul li a {
	color: #000000;
	font-size: 22px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 20px;
	padding-top: 10;
	text-decoration: none;
		}

ul li a:hover {
	font-weight: 700;
}

@media (width <= 800px) 
    {
ul li a {
	text-decoration: none;
	font-size: .8rem;
	color: #000000;
	padding-top: 0;
	padding-bottom: 10px;
    padding-left: 20px;
	padding-right: 20px;
		}
    }


header {
    background-color: #f2f2f2;
	border-bottom: 3px solid black;
    margin-bottom: 40px;
	margin-left: 20px;
    margin-right: 20px;
    min-height: 140px;
    width: 100%;
      }  

@media (width <= 800px) 
{
    header {
    
    margin-bottom: 20px;
	margin-left: 10px;
    margin-right: 10px;
    min-height: 100px; 
    width: 80%;
			}
}

img {
	width: 100%;
}
    
p  {
	font-size: 1rem;
	margin-left: 20px;
	margin-right: 20px
}

@media (width <= 800px) 
{
p   {
    font-size: .8rem; 
    }
}

.katalog-flex-container {
    align-items: center;
    align-content: center;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: row;
    font-size: 28px;
    height: 100px;
    justify-content: center;
    margin: 0 auto;
    width: 600px; 
    }

@media (width <= 800px)  
    {
.katalog-flex-container {
    flex-direction: column;
    font-size: .8rem;
    height: 150px;
    margin-top: 10px;
    width: 100px;
                        }
    }

.katalog-flex-left-item {
    padding-right:10px;
    margin-right: 10px;
    text-decoration: none;
    color: black;
    background-color:#f2f2f2;
    height: 60px;
    width: 250px;
}

.katalog-flex-right-item {
    padding-left:10px;
    margin-left: 10px;
    text-decoration: none;
    color: black;
    background-color:  #f2f2f2;
    height: 60px;
    width: 400px;
}

.katalog-flex-container a:hover {
	font-weight: 700;
    }

footer {
	position: relative;
	bottom: 0;
	width: 1100px;
	height: 2px;
	background-color: #f2f2f2;
    border-bottom: 2px solid black;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
 
