
body{
	font-family: 'Space Mono', monospace;
	background-image: url("image.jpg");
    background-size: cover;
    background-blend-mode: darken;
	color: #0bd3d3;
}

p {
	color: #f890e7;
}

.effect {
    font-size: 30px;
}

.effect:hover {
	color: #f890e7;
    display: inline-block;
}

#top {
    text-align: center;
}

#logo {
    color: #f890e7;
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    font-family: monospace;
    margin-top: 8px;
}

#logo-name {
    font-size: 16px;
    font-weight: 200;
    margin: 8px;
}

#navigation a {
    color: #0bd3d3;
    padding: 8px;
}

.btn-outline-danger {
	border-color: #f890e7;
	color: rgb(11, 211, 211);
}

#navigation a:hover {
    color: #f890e7;
}

#image img{
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
}

#main {
    margin: auto;
    display: inline-block;
    max-width: fit-content;
    margin-left: 8px;
    margin-right: 8px;
    padding: 8px;
}

.uniform-card {
    background-color: transparent; /* Clear background by default */
    color: #f890e7; /* Pink text */
    border: 2px solid black;
    text-align: center;
    height: 100%; /* Ensures cards stretch to the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none; /* No shadow by default */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.uniform-card:hover {
    background-color: rgba(11, 211, 211, 0.6); /* Light blue background with 80% opacity */
    color: #f890e7; /* Pink text on hover */
    box-shadow: 0 0 15px rgba(173, 216, 230, 0.4); /* Light blue glow on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.uniform-card .btn-outline-light {
    border: none; /* Clear button */
    background: transparent; /* Transparent background */
    color: #f890e7; /* Pink text */
    font-size: 1.2em; /* Default button text size */
    transition: color 0.3s ease, font-size 0.3s ease;
}

.uniform-card .btn-outline-light:hover {
    color: #f890e7; /* Pink text on hover */
    font-size: 1.2em; /* Slightly increase button text size on hover */
    text-decoration: underline; /* Optional: underline text on hover */
}

.uniform-card .btn-outline-light:hover {
    color: #f890e7; /* White text on hover */
    font-size: 1.2em; /* Slightly increase button text size on hover */
    text-decoration: underline; /* Optional: underline text on hover */
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-4 {
    display: flex;
    flex-direction: column;
}