body {
  margin: 0;
  padding: 0;
  background-color: rgb(247, 197, 205);
  background-image: url("../background_flower.png");
}

.container {
  max-width: 1065px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: auto;  
}

.header {
  background-color: rgb(243, 165, 187);
  padding: 10px;
  height: 100px;
  display: flex;
  border-radius: 5px;
  box-shadow: 5px 5px 5px rgb(189, 153, 172);
}

.header img {
  width: 100px;
  height: 100px;
}

.header h1 {
  margin: auto;
}

.coloumn {
  min-height: 350px;
  margin-top: 10px;
  padding: 10px;
  display: inline-block;
}

.coloumn a {
  text-decoration: none;
  color: black;
}

.cardsheader {
  display: none;
  background-color: rgb(247, 197, 205);
  margin-top: 10px;
  padding: 10px;
}

.card {
  display: flex;
  min-height: 130px;
  background-color: rgb(243, 165, 187);
  margin: 20px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px rgb(189, 153, 172);
  overflow: hidden;
}

.card img {
  margin-left: 10px;
  margin-top: 2%;
  width: auto;
  height: 100px;
}

.leir {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: auto;
  padding: 10px;
  background-color: rgb(247, 197, 205);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: opacity ease, transform 0.5s ease;
}

.leir h2 {
  margin-bottom: 10px;
}

.leir img {
  width: 100%;
  transition: all linear 0.3s;
  position:absolute;
  top: -25px;
  left: -10px;
  z-index: 1;
  opacity: 0;
  box-shadow: 5px 5px 5px rgb(247, 197, 205);
  border-radius: 5px;
}

.card:hover {
  background-color: rgb(241, 85, 111);
}

.card:hover .leir {
  background-color: rgb(241, 85, 111);
  color: rgb(241, 85, 111);
}

.card:hover .leir img {
  opacity: 1;
}

.leir a {
  text-decoration: none;
  color: black;
}

.footer {
  background-color: rgb(247, 197, 205);
  display: inline-flex;
  
}

.footer p {
  padding: 10px;
  margin: auto;
}

.footer-content {
  display: inline-flex;
  margin: auto;
  text-decoration: none;
}

.footer-content a {
  text-decoration: none;
  color: black;
}

.social img {
  width: 30px;
  height: 30px;
  margin: 10px;
}

@media screen and (max-width: 992px) {

  .coloumn {
    background-image: url("../background_flower.png");
  }
    
  .container {
    display: flex;
    flex-direction: column;
  }

  .header {
    background-color: rgb(243, 165, 187);
    padding: 10px;
    height: 100px;
    display: flex;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
  }

  .header h1{
    text-align: center;
  }

  .leir {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: auto;
  }

  .card {
    display: flex;
    min-height: 130px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
    align-items: center;
  }

  .card img {
    margin: auto;
    width: auto;
    height: 100px;
  }

  .footer {
    display: inline;
    background-color: rgb(247, 197, 205);
    margin: auto;
  }

  .footer-content {
    display: inline-block;
    margin: auto;
    text-decoration: none;
    text-align: center;
  }
  
  .footer-content a {
    text-decoration: none;
    color: black;
  }
  
  .social img {
    width: 30px;
    height: 30px;
    margin: 10px;
  }
}

@media screen and (max-width: 600px) {
  .footer {
    display: inline-flex;
  }

  .footer p {
    padding: 10px;
    margin: auto;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    margin: auto;
    text-decoration: none;
  }

  .footer-content a {
    text-decoration: none;
    color: black;
  }

  .leir {
    display: none;
  }

  .social img {
    width: 30px;
    height: 30px;
    margin: auto;
  }
}
