body {
    position: relative;
    background: linear-gradient(to bottom, #03011a, #d9d9e7);
}

.image-container > img {
    width: 450px;
    height: 300px;
}

.list-group-item {
    cursor: pointer;
}
.navbar-nav {
    display: none;
}
.image-block, .image-block-experience {
    position: relative;
    max-height: 500px;
    max-width: 1300px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: solid 2px #968fc0;
}

.image-block img, .image-block-experience img {
    width: 100%;
    height: auto;
    display: block
}

.image-block-experience img {
    opacity: 0.7;
}

.center-button {
    position: absolute;
    bottom: 0;
    /*top: 50%;*/
    left: 50%;
    transform: translate(-50%, -10%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.25;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.button-group {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.horizontal-button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.center-button:hover, .horizontal-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/*text-info*/
.header-container {
    background-color: rgba(0, 0, 0, 0.01);
    color: white;
    padding: 50px;
    text-align: center;
}

.header-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.header-container p {
    font-size: 1.2rem;
}

/*footer*/
.footer {
    background-image: url("resources/img/footer-main.jpg");
    background-size: cover;
    color: white;
    padding: 150px 0;
    text-align: center;
    margin-top: 20px;
}


