@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    background-color: #333333;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    background-image: url('images/DSC_4711.png');
    filter: brightness(0.);
    /* Adjust brightness value (0 to 1 for dim, >1 for brighter) */
    z-index: -1;
    /* Places the background behind the text */
}

@media (min-width: 1600px) {
    .bigscreen {
        height: 87.5vh !important;
    }
}