.full-screen-bg {
    background-image: url('img/img-000.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(212, 212, 212, 0.7); /* Add text shadow */
    padding-top: 20vh; /* Add spacing from the top */
}
.blue-text {
    color: blue;
    margin-top: 20px; /* Add spacing from the previous element */
}
.text-box {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow */
}