@charset "UTF-8";
/* CSS Document */

h1{
    font-size: 30pt;
    color: #3a130e;
    margin-left: 5%;
}

.proj{
    margin-top: 30px;
    margin-bottom: 50px;
}


hr{
    color:#3a130e;
}



.cover{
    margin-left: 5%;
    
}




h2{
    color: #3a130e;
}

h3{
    font-size: 10pt;
    margin-top: -10px;
    color: #3a130e87;
}

img{
    border-radius: px;
}

.text{

    margin-top: 20px;
    margin-left: 5%;
}

h5{
  transition: 0.9s ease;
  text-align: center;

}

h5:hover{
transform: scale(1.1);
transition: 0.9s ease;

}

/*media*/


@media (min-width: 769px) {
h1{
    font-size: 50pt;
    color: #3a130e;
    margin-left: 5%;
}
.text{

    margin-top: 20px;
    margin-left: 0%;
}

}

@media (min-width: 850px) {


h1{
    font-size: 60pt;
    color: #3a130e;
    margin-left: 5%;
}
.text{

    margin-top: 20px;
    margin-left: 0%;
}


}

/*@media (min-width: 992px) {


h1{
    font-size: 100pt;
    color: #3a130e;
    margin-left: 5%;
}

}
*/
@media (min-width: 1500px) {


h1{
    font-size: 90pt;
    color: #3a130e;
    margin-left: 5%;
}
.text{

    margin-top: 20px;
    margin-left: 0%;
}
}


.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 10px; /* no vertical padding when closed */
  color: #3a130e;
}

.content.open {
  max-height: 350px; /* adjust depending on content */
  padding: 10px;
}

.toggle-btn {
    margin-top: 10px;
    margin-left: 10px;
 padding: 3px 5px;
  color:#3a130e ;
  border: 1px solid #3a130e;
    border-radius: 10px;
  cursor: pointer;
  background-color:white;
  transition: 0.9s ease;
 
}


.toggle-btn:hover {
  padding: 3px 5px;
  color:white ;
  background-color: #3a130e;
  border-radius: 10px;
   transform: scale(1.1);
    transition: 0.9s ease;
}


.img-wrapper {
  position: relative;
  display: inline-block;
  width: 90%;
  overflow: hidden;
  border-radius: 8px;
  
}

.img-wrapper img {
  width: 100%;
  display: block;
  transition: opacity 0.9s ease;
   
}


.img-wrapper .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 20px;

  opacity: 0;
  transition: opacity 0.9s ease;

  

  
}

.img-wrapper:hover img {
  filter: blur(4px)  brightness(0.7);
  
}

.img-wrapper:hover .hover {
  opacity: 1;
   
}

.img-wrapper .hover p {
  transform: translateY(10px);
  transition: transform 0.9s ease;
}

.img-wrapper:hover .hover p {
  transform: translateY(0);
}




