*{
    box-sizing: border-box;
}
body{
    background-color: #780116;
    flex-wrap: wrap;
}
header{
    background-color: #c32f27;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown button{
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    margin: 0;
    border: 1px black solid;
    margin-top: 50px;
}
.dropdown-content{
    display: none;
    margin: auto;
    background-color: #85031a;
    max-width: 250px;
    box-shadow: 0px 8px 16px 0px #ffccd5;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}
.dropdown-content a:hover {
    background-color: #f7b538;
    color: black;   
}
.dropdown:hover .dropdown-content {
    display: block;
}
.kontenjer{
    text-align: center;
}
button{
    background-color: #d8572a;
}
h1{
    color: white;
    text-align: center;
}
a{
    color: white;
    text-decoration: none;
}
article{
    width: 900px;
    height: 500px;
    background-color: #d8572a;
    margin: auto;
    box-shadow: 0px 8px 16px 0px black;
    flex-wrap: wrap;
}
img{
    padding-top: 100px;
    max-width: 500px;
}
p{
    color: white;
    font-size: 20px;
}