body {
    margin: 0;
    padding: 0;
    background-image: url('../img/Ursynalia 2012.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;

}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4); 
   
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 80vh; 
    
}

.footer-logo {
    height: 60px;
    width: auto;
}

.text {
    display: inline;
}

.short-text {
    display: none;
}

.footer-text {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white; 
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#copyright {
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: white; 
    font-size: 1.5vh;
    text-align: left;
    font-weight: normal;
    opacity: 50%;
    text-decoration: none;
  
}


#contact {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}


@media (max-width: 768px) {
    .logo {
        max-height: 60vh;
    }
    .footer-text {
        font-size: 2vh;
    }
    #contact {
        font-size: 1.5vh;
    }
    #copyright{
        font-size: 1vh;
    }
    .footer-logo {
        height: 5vh;
    }
 
   
}
