/* styles.css */

body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #262627;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-image: url('media/kanal.jpg');
    /* Center and scale the image nicely */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

header {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1em;
}

main {
    display: flex;
    margin: 10px; /* Add top margin to the entire content area */
	letter-spacing: 1px; /* Increase letter spacing */
    backdrop-filter: blur(10px);
    overflow: hidden; /* Hide content that overflows */
}

aside {
    flex: 0.2;
    background-color: #333;
    padding: 10px;
    padding-top: 40px;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    backdrop-filter: blur(10px);
    margin-top: 5px; /* Add margin to the right side of the sidebar */
    margin-right: 5px; /* Add margin to the right side of the sidebar */
    margin-left: 5px; /* Add margin to the right side of the sidebar */
    margin-bottom: 5px; /* Add margin to the right side of the sidebar */
}

aside h2 {
    margin-bottom: 10px; /* Add margin to separate menu items */
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

a:hover {
    color: #ffd700;
}

section {
    flex: 1.6;
    margin-top: 5px; /* Add margin to the right side of the sidebar */
    margin-right: 5px; /* Add margin to the right side of the sidebar */
    margin-left: 5px; /* Add margin to the right side of the sidebar */
    margin-bottom: 5px; /* Add margin to the right side of the sidebar */
    padding: 20px;
    background-color: #ffffff7a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden; /* Hide content that overflows */
}

h1, h2, h3 {
    color: #333;
    font-size: 2em; /* Increase font size for h1 */
}

p {
    line-height: 1.6;
}

.band-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #333;
    text-decoration: none;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 1em;
    position: bottom;
    bottom: 0;
    width: 100%;
}

img {
    width: 100%;
    max-width: 500px;
}

figcaption {
    text-align: left;
    font-size: small;
    font-style: italic;
  }