html, body {
    overflow-x: hidden;
    width: 100%;
}

/* #region FRONT PAGE */
.section1 {
    position: fixed;
    background: url('Security_Solution/Lock.jpg') no-repeat center center/cover;
    background-size: cover; /* Ensures the image covers the section */
    color: black;
    flex-direction: column;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

.section1 h1 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(44px, 12vw, 120px);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    background-color: rgb(255, 255, 255,0.4);
}

.section1 h2 {
    font-family: 'Arial', sans-serif;
    font-size: clamp(12.5px, 3.75vw, 37.5px);
    border-radius: 20px;
    animation: text-grow-shrink 3s ease-in-out infinite;
    text-shadow: 0px 5px 20px rgb(255, 255, 255);
}

@keyframes text-grow-shrink {
    0% {
        font-size: clamp(12.5px, 3.75vw, 37.5px); /* Normal size */
    }
    50% {
        font-size: clamp(13.75px, 4.125vw, 41.25px); /* Bigger size */
    }
    100% {
        font-size: clamp(12.5px, 3.75vw, 37.5px); /* Back to normal size */
    }
}

/* Scroll down indicator */
.scroll-down {
    position: absolute;
    bottom: 25%;
    color: rgb(255, 255, 255);
    font-size: 16px;
    cursor: pointer;
}

.section2 {
    z-index: 2;
    background-color: white;
    position: absolute; /* Or use 'absolute' if you want it positioned relative to the page */
    top: 100vh; /* Push it just below the viewport */
    left: 0;
    height: fit-content; /* Ensure it takes up enough space to be visible */
    padding: 20px; /* Optional padding for content */
    display: block;

}
/* #endregion */


.first-part,
.second-part {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    gap: 5%;
    width: 100%; 
}

.first-part .paragraph,
.second-part .paragraph {
    width: 40%; 
    font-family: 'Arial', sans-serif;
    font-size: clamp(10px, 2.5vw, 25px);
    text-align: center; 
}

.first-part .image,
.second-part .image {
    width: 30%; 
}

.section2 img {
    width: 100%; 
    height: auto;
    box-shadow: 5px 5px 20px black;
}

.orange-text {
    color: rgb(237, 85, 35);
}

