body{
    background-color: rgb(0, 29, 82);
    margin: 0;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
}
.header, .main, .footer{
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}
.head{
    width: 100%;
    background-color: rgb(0, 29, 82);
}

.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 29, 82);
    height: 255px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.header h1{
    position: relative;
    left: 55px;
}

.header img{
    max-width: 15%;
}

.header ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header ul li{
    float: left;
    margin: 10px;
}

ul li a {
  font-size: 20px;  
  color: white;
  text-align: center;;
  text-decoration: none;
}

.main{
    align-items: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 29, 82);
    width: 100%;
    max-width: 1280px;
}


.row{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.article{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    color: black;
    border-radius: 5px;
    font-size: 8px;
    padding: 10px;
    flex-basis: 400px;;
}

.articleONAMA{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    color: black;
    border-radius: 5px;
    font-size: 8px;
    padding: 10px;
    flex-basis: 400px;
}

.articleONAMA img{
    margin-top: 22px;
    max-height: 40%;
    border-radius: 5px;
}

.article img{
    margin-top: 22px;
    max-height: 40%;
    border-radius: 5px;
}

.foot{
    width: 100%;
    background-color: rgb(0, 29, 82);
}
.footer{
    display: flex;
    background-color: rgb(0, 29, 82);
    height: 200px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

button{
    margin-top: 10px;
    background-color: white;
}

button a{
    text-decoration: none;
    color: black;
}

.kontakt-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.kontakt-container h1 {
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
}

.kontakt-form label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #000000;
}

.kontakt-form input,
.kontakt-form textarea {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  resize: vertical;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  border-color: #000000;
}

.kontakt-form button {
  margin-top: 20px;
  padding: 12px;
  font-size: 16px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.kontakt-form button:hover {
  background-color: #000000;
}