* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(45deg, white, #345);
    padding: 8px;
    border-radius: 8px;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.logo {
    position: absolute;
    top: 3vh; /* Adjust position */
    left: 3vh; /* Adjust position */
    width: 10vh; /* Adjust size */
    height: auto;
}

header {
    background-color: #345;
    min-height: 120px;
    position: relative;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    border-radius: 8px; /* Add border radius */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

header h1 {
    color: #EEE;
}

.photo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.photo-item {
    margin: 10px;
    text-align: center;
}

.photo-item img {
    max-width: 200px;
    height: auto;
}

.icon {
    width: 50px;
    height: auto;
    margin-top: 10px;
}

.icon-label {
    font-family: 'Abril Fatface', serif;
    font-size: 16px;
    margin-top: 5px;
}