body {
    overflow-x: hidden; /* Hides horizontal overflow */
    box-sizing: border-box;
}

.head-image{
    background-image: url("https://www.locaweb.com.br/blog/wp-content/uploads/2024/07/sql-1.jpg");
    background-position: center;
    background-size:cover;
    background-repeat:no-repeat ;
    background-color:#444;
    position: relative;
    height: 80vh;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-blend-mode: overlay;
}
footer a:hover{
    color: #FFD700 !important;
}

.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;

    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;

        img {
            height: 60px;
            width: 60px;
        }
    }

    .navbar-nav {
        flex-grow: 1;
        justify-content: space-between;
    }

    .nav-link {
        color: #FFD700 !important;

        &:hover {
            color: white !important;
        }
    }

    .navbar-toggler {
        border-color: white;

        .navbar-toggler-icon {
            &::before {
                content: '';
                display: block;
                width: 24px;
                height: 3px;
                background-color: white;
                margin: 5px 0;
            }

            &::after {
                content: '';
                display: block;
                width: 24px;
                height: 3px;
                background-color: white;
                margin: 5px 0;
            }
        }
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 30px;
}

.overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    .overlay-content {
        text-align: center;
        color: white;
    }

    .closebtn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }
}

.nav-name{
    font-size: 30px!important;
    text-decoration: none;
    color: #FFD700 !important;
}

.intro{
    margin: auto;
    width: 500px;
    padding: 50px;
}

img{
    max-width: 100%;
    height: auto;
}

.download-container {
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center;     /* Center items vertically */
    gap: 20px;
    margin-top: 20px;
}

.file-container {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.file-container img {
    width: 50px;
    height: 50px;
}

.file-container p {
    margin-top: 5px;
    font-size: 14px;
    color: #FFD700;
}

.outer{
    background-image: url("https://media.istockphoto.com/id/1393858554/photo/relational-database-tables-with-server-room-and-datacenter-background-concept-of-database.jpg?b=1&s=612x612&w=0&k=20&c=wsc-TM8hTxr08jfnns_mWFyJ9vUMHFU19h7B1U7Xepw=");
    background-position: center;
    background-size:cover;
    background-color:#444;
    max-width: 100%;
    padding: 50px;
    background-blend-mode: overlay;
}

@media screen and (min-width:700px){
    .nav-name{
        font-size: 40px!important;
    }
}