/* Mobile first (0-576px)*/
/*@media (min-width: 576px) {*/
/*@media (min-width: 768px) {*/
/*@media (min-width: 992px) {*/
/*@media (min-width: 1200px) {*/
/*@media (min-width: 1400px) {*/

.home-logo-container {
    position: absolute;
    top: 50%; /* Start at the center vertically */
    left: 50%; /* Center corner horizontally */
    transform: translate(-50%, -100%); /* Fully center the container */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 150px;  /* Set the width of the container */
}

.home-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-links {
    position: absolute;
    top: 50%; /* Start at the center vertically */
    left: 50%; /* Center corner horizontally */
    font-family:'Courier New', Courier, monospace;
    font-weight:bolder; 
    color: #333;
    transform: translate(-51%, 5%); 
    
}

.link-item {
    display: block; /* Ensure each link is on its own line */
    margin: 6px 0; /* Space between links */
    text-decoration: none; 
    font-size: 2.8rem;
    color: #000000; /* Link color */
}

@media (min-width: 576px) {
    .home-logo-container {
        width: 200px;
        height: auto;
        /*transform: translate(0%, 0%); /*Adjust the vertical position slightly */
    }
    .home-links{
        transform: translate(-51%, 5%); 
    }
    .link-item{
        font-size: 3.6rem;
    }
}