@font-face{
    font-family: Poppins;
    src: url(fonty/Poppins-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Poppins;
    src: url(fonty/Poppins-ExtraBold.ttf);
    font-weight: bold;
}

html{
    background: #f9f9f9;
}

body {
    font: 14px "Poppins", sans-serif;
    background: #f9f9f9;
    color: #414042;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1680px;
    padding: 0 1rem;
}

.d-flex > .h1 {
font-size: 3rem;
margin-bottom: 0;
font-weight: bolder;
}

#logo {
    height: 70px;
    margin: auto 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .underline {
        border-bottom: 2px solid white;
        width: max-content;
    }

    body {
        font-size: 15px;
        padding: 0
    }
}

#logo > * {
    margin: 0 0 0 5px; 
}

#logo h1 {
    font-weight: normal;
    font-size: 1.5em;
}

#logo h1 span {
    font-weight: bold;
    text-transform: uppercase;
}

#logo small {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 1em;
}

.text-underline{
    border-bottom: 2px solid transparent;
}

.text-underline:hover {
    border-bottom: 2px solid white;
}
.navbar-dark{
    font-size: 1.2rem;
   
}
.image-wrapper {
    height: 100px; /*or more if needed */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.image-wrapper img {
    max-height: 100%;
    object-fit: contain;
  }

section h1 {
    border-bottom: 4px solid green;
    width: max-content;
}

.width-form {
    width: 50%;
}

.btn-success:hover {
    color: rgb(0, 128, 0);
    border: 1px solid green;
    background-color: white;
}

footer {
    height: 100px;
   
}

.skill-card {
    transition: transform 0.3s ease; /*The transition will be smooth and it applies when hovering over the element.*/
  }

.skill-card:hover {
    transform: scale(1.05);
  }

.badge-beginner { background-color: #e57373; }
.badge-intermediate { background-color: #ffb74d; }
.badge-advanced { background-color: #81c784; }

.img-thumb {
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .img-thumb:hover {
    transform: scale(1.1);
    
  }

  .thumb {
    width: 80px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .thumb:hover {
    transform: scale(1.1);
  }
  
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter:  brightness(20%) saturate(100%) sepia(100%) hue-rotate(180deg);
}