body {
    margin: 0;
    padding: 0;
    background-image: url('../img/Ursynalia 2013.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: Arial, sans-serif;
    position: relative;
    opacity: 90%;
}

.title {
    
    position: absolute;
    color: white; 
    font-size: 5vh;
    text-align: center;
    font-weight: bolder;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    
}

.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;
}

.full-text {
    display: none;
}

.short-text {
    display: none;
}

.footer-text {
    position: fixed;
    bottom: 20px;
    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;
}

#copyright {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 1.5vh;
    text-align: left;
    font-weight: normal;
    color: #fff;
    opacity: 50%;
    text-decoration: none;
}


@media (max-width: 768px) {
    .logo {
        max-height: 60vh;
    }
    .footer-text {
        font-size: 4vh;
        margin-bottom: 3vh;
    }
    .footer-logo {
        height: 5vh;
    }
    #copyright{
        font-size: 1vh;
    }
    .title {
        margin-top: 40%;
        font-size: 4vh;
    }
}
