/* Style for the body to ensure full height and centering */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background-color: #f1f1f1;
    position: relative; /* Needed for positioning background */
}

/* Ensure the background spans the full viewport */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Keep it behind the content */
    background-image: url('/static/images/logo_inetum_0.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Styling for the no-way sign */
.no-way-sign {
    width: 200px;
    height: 200px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; /* Position it absolutely within the parent */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center it both horizontally and vertically */
}

/* The white bar in the middle of the sign */
.bar {
    width: 80%;
    height: 30px;
    background-color: white;
}

/* Content section to display in front of the background */
header, main, footer {
    z-index: 1; /* Ensure content is on top of the background */
    text-align: center;
    position: relative;
}

/* Additional styling for headers and footers */
h1 {
    color: black;
}

footer p {
    color: black;
}
