@font-face { font-family: Louis George Cafe; src: url(Louis_George_Cafe.ttf); } 
@font-face { font-family: Louis George Cafe Bold; src: url(Louis_George_Cafe_Bold.ttf); } 

div {
    font-family: Louis George Cafe;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color:rgb(212, 241, 198);
}

.footer-center {
    display: flex;
    justify-content: center;
}

body {
    background-color: rgb(228, 223, 223);
}


p {
    font-family: Louis George Cafe;
    
}

h1 {
    font-family: Louis George Cafe Bold;
    color:rgb(20, 77, 47);
    padding-top: 10px;
    
}

section {
    padding: 24px;

    min-height: 100vh;
}

h3, h4, h6 {
    font-family: Louis George Cafe Bold;
    color:rgb(20, 77, 47);
    padding-top: 10px;
}

a {
    color:black;
    text-decoration: none;

}


.contact-info {
    display: flex;
    justify-content: center;
}

ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    float: left;
    padding-left: 100px;
    padding-right: 100px;
  }
  
  li {
    margin-bottom: 10px;
  }


.icon-margin {
    margin: 5px;
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.nav-link {
    color:rgb(20, 77, 47);
    font-size: 18px;
}

.nav-link:hover {
    color:rgb(31, 110, 68);
}

.container-lg {
    background-color:rgb(212, 241, 198);
    padding: 24px;
}

.intro-text {
    font-size: 18px;
}

.image-container { 
    position: relative; 
    display: inline-block; 
    margin-left: 4px;
    margin-right: 4px;
} 
 
.portfolio-images {
    display: block;
    transition: 0.5s;
    transition-timing-function: ease-out;
}

.portfolio-images:hover {
    display: block;
    filter: brightness(60%);
    transform: scale(0.98);
}

.centered-title {
    display: none;    
    font-family: Louis George Cafe Bold;
    color: white;
    font-size: 2vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.5s;
}

.image-container:hover .centered-title {
    display: block;    
}

.btn {
    background-color:rgb(20, 77, 47);
}

.btn:hover {
    background-color: rgb(7, 59, 31);
}

img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.col {
    position: relative;
    padding: 8px;
}