body, html {
    margin: 0;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    position: absolute;
    bottom: 0;
    width: 10%;
    height: 20px; /* Adjust the height of the footer as you need */
    background-color: #000000; /* Black background color of the footer */
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    text-decoration: none;
    color: white; /* White color for the text */
    font-size: 16px; /* Size of the text */
}



/* Blue sign with white text */
.blue-sign {
	display: flex;
    background-color: #0057b7;  /* Blue background */
    color: white;              /* White text */
    border: 5px solid white;   /* White border */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0px 0px 0px 2px rgba(218, 218, 218, 0.75);
}

/* White sign with black text */
.white-sign {
	display: flex;
    background-color: white;   /* White background */
	color: black;              /* Black text */
    border: 5px solid black;   /* Black border */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0px 0px 0px 2px rgba(218, 218, 218, 0.75);
}

.sign {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0px 0px 0px 2px rgba(218, 218, 218, 0.75);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transitions for color changes */
}

.sign-text {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 90px;
    user-select: none;
    z-index: 2;
}

.cross-out {
    position: absolute;
    width: 120%;
    height: 36px;
    background-color: red;
    transform: rotate(-41deg);
    top: 35%;
    left: -10%;
    z-index: 10;
}
