body {
    background-color: #0c0c0c;
    color: #ffffff;
    font-family: "Lato", sans-serif;
}

.navbar {
    background-color: #000000;
    width: 100%;
}

.nav-link:hover {
    color: #b4de28;
    transform: scale(1.1);
}

.navbar .dropdown-menu {
    background-color:  #01b5cc; 
    border: none;
}


.navbar .dropdown-item:hover {
    background-color: #000000; 
    color: #b4de28;
    transform: scale(1.1);
}


.container-landingPage {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.video video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}


.centered {
    font-family: 'Lato', sans-serif;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    text-align: center;
}

.centered h5  {
    margin-top: 30px;
}

.centered img {
    margin-top: 200px;
    min-width: 40%;
    max-width: 50%;
    height: auto;
}

.btn {
    border-radius: 20px;
    margin-top: 15px;
    background-color: #01b5cc;
    color: white;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #b4de28;
    color: rgb(0, 0, 0);
    transform: scale(1.1);
}


.contents {
    padding-top: 130px;
    width: 100%;
}

.text-title {
    font-family: 'Playfair Display SC', sans-serif;
    font-size: 60px;
    font-weight: bold;
    text-shadow: 2px 2px #b4de28;
}

.text-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 80px;
}

.thumbnail {
    position: relative;
    overflow: hidden;
}

.thumbnail-image {
    display: block;
    max-width: 100%;
    max-height: auto;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 49, 58, 0.7);
    color: #EBE3DB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.25s;
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-title {
    font-family: "Lato", sans-serif;
    font-size: 2em;
    font-weight: bold;
}

.loadingBar {
    background-color: #6096BA;
    height: 5px;
    width: 0%;
}

.loadingBarContainer {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.card {

    padding: 30px;
    text-align: center;
}

.card-title {
    font-family: 'Playfair Display';
    font-weight: bold;
}

.img-shadow {
    border-radius: 8px;
    overflow: hidden; 
    transition: transform 0.2s; 
}

.img-shadow:hover {
    box-shadow: 3px 4px 3px #b4de28;
    transform: scale(1.0); 
}

.imgContainer {
    border: 10px solid #b4de28; 
    border-radius: 5px;
    padding: 5px; 
    background-color: #01b5cc 
}

.imgContainer img {
    transition: transform 0.3s ease;
    border-radius: 15px;
    width: 100%; 
}

.imgContainer img:hover {
    transform: scale(1.1); 
}

.texts {
    font-family: 'Lato', sans-serif;
}

#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.btnProjects {
    background-color:  #01b5cc;
    color: white;
    font-weight: bold;
    border: none;
    width: 170px;
    height: 50px;
    border-radius: 50px;
}

.btnProjects:hover {
    background-color:  #b4de28;
    color: rgb(0, 0, 0);
}

