/* Basic settings */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url('background.webp');
    background-size: cover; 
    background-attachment: fixed;
    text-align: center;
}

/* Headlines and Text */
h1 {
    font-family: 'Silkscreen', sans-serif;
    font-weight: 600;
    color: #000000;
    padding: 10px;
}

p {
    color: #000000;
    padding: 0 20px;
}

footer {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.3rem;
    color: #3535356e;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 5px;   
}

/* Classes */
.main-content {
    background-color: rgba(240, 240, 240, 0.9);
    max-width: 75%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;          
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
}

.main-content img {
    max-width: 230px;        
    height: auto;
    border-radius: 14px;
}

.gallery-sticker {
    background-color: rgba(240, 240, 240, 0.9);
    max-width: 90%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;          
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
}

.gallery-sticker img {
    max-width: 50%;        
    height: auto;
}

.gallery {
    background-color: rgba(240, 240, 240, 0.9);
    max-width: 90%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;          
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
}

.gallery img {
    max-width: 85%;        
    height: auto;
}
/* Google Fonts related stuff */


.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Button specific stuff*/
.btn {
    font-family: 'Silkscreen', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #333;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 12px 25px;
    margin: 10px 0;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
    border-color: #333;
    color: #f6561c;
}
/* Mobile adaptation */
@media (max-width: 600px) {
    .container {
        width: 100%;
    }
}