@charset "UTF-8";

body {
  background: url('/Gallery-General/Balcony_view_1.webp') no-repeat center center fixed;
  background-size: cover;
}

.main-container {
    width: 60%; /* or your desired width */
    margin: 20px auto; /* Centers the container horizontally */
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.partner-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f1f3f5;
}

.partner-section:last-child {
    margin-bottom: 0;
}

.partner-links {
    flex: 1;
}

.partner-links a {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #f0a500;
    text-decoration: none;
}

.partner-links a:hover {
    text-decoration: underline;
}

.partner-logo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px){
	
	.main-container {
	    width: 95%;
	    height: auto;
	    margin-top: 20px;
	    padding: 20px 2%;
	}
	
	.main-container {
		text-align: center;
		font-size: 1.2em;
	}
	
	.partner-links a {
	    display: block;
	    margin-bottom: 5px;
	    font-size: 1.2em;
	    text-decoration: none;
	    text-align: left;
	}
	
}
