.top-bar {
    background-color: rgba(0, 0, 0, 0.7);
    height: 2.6cm;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 2.5cm;
}

.nav-items {
    display: flex;
    align-items: center;
}

.shop-icon {
    height: 1.5cm;
    margin-left: 150px;
}

.shop-text {
    color: white;
    margin-left: 10px;
    font-size: 1cm;
    font-family: Arial, sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.content-section {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#section1 {
    background-image: url('audiobloomwebsitefoto.png');
}

#section2 {
    background-image: url('audiobloomwebsitefoto2.png');
}

.overlay-text {
    position: absolute;
    bottom: 90px;
    left: 100px;
    color: white;
    background-color: blue;
    font-size: 100px;
    font-family: 'Arial', sans-serif;
}

.blink {
    animation: blink-animation 1s infinite;
    color: white; /* Ensures the dot is blue */
}

@keyframes blink-animation {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
