body{
    background-color: #f594bd;
    padding: 0 10px 10px 10px;
}
h1,h2,h3,h4,h5,h6,p,button,a,input,textarea{
  font-family: "Outfit", sans-serif;
}
.cosa{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    padding: 5px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 5px;
    margin-top: 15px;
    height: 10vh;
    padding-right: 25px;
}
.header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}
.header h2{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
}
.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: slide-in-top 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 0 0 100% 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
}
.footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}
.logo img{
    width: 100px;
}
.header h4{
    margin-bottom: 30px;
    font-size: 15px;
}
.header h2, h4{
    color:#2a3040;
    text-align: center;
}
.text-cosa{
    display: flex;
    flex-direction: column;
}
.text-cosa h5, p{
    color:rgb(37, 37, 37)
}
.slide-in-bottom {
	-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	        animation: slide-in-bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.text-cosa h5{
    font-size: 20px;
    font-weight: 600;
    margin: 0 5px;
    color: rgb(37, 37, 37);
}
.text-cosa p{
    font-size: 15px;
    margin: 0 5px 10px;
    color: rgb(37, 37, 37);
}
.img-cosa{
    width: 30px;
}
.img-cosa img{
    width: 100%;
    transform: rotate(15deg);
    filter: drop-shadow(5px 5px 7px #7a7a7a);
    
}