/* Resetting default margin and padding */
body, h1, h2, h3, h4, h5, h6, ul, li, p {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Container styles */
.container {
    position: relative;
    width: 70%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

/* Positioning the login link to the top right corner */
.top-right {
    position: absolute;
    top: 0;
    right: 0;
}

/* Styling the login link */
.login-container {
    display: flex;
    align-items: center;
}

.login-link {
    padding: 8px 15px;
    border: 1px solid #000;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    background-color: #fff;
}

/* Styling the bag logo */
.bag-logo {
    margin-left: 5px;
}

/* Logo centering */
.logo img {
    display: block;
    margin: 0 auto;
}

/* Navigation styles */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    padding: 10px 0;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

/* Styling the navigation links */
nav ul li a {
    text-decoration: none;
    color: #000;
    padding: 8px 15px;
}

/* Creating the ribbon effect */
nav ul li::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

/* Styling the last element to remove the ribbon effect */
nav ul li:last-child::after {
    display: none;
}

/* Styles for the slideshow container */
.slideshow-container {
    width: 70%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ccc;
}

/* Additional styles for the slideshow images */
.slides {
    width: 100%;
    height: auto;
}

.gallery-container {
    max-width: 130px;
    margin: 0 auto;
    padding: 3px;
}

#row {
    display:flex;
    flex-wrap: inherit;
    justify-content: center;
}

#column {
    flex: 5;
    margin: 60px;
}

#column img { 
    max-width: 100%;
    height: auto;
    border: 10px solid #ffffff;
    border-radius: 10px;
}

#column img:hover {
    border: 10px solid #ffffff;
    border-radius: 10px;
}

#hear {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 24px; /* Set your desired font size */
    font-weight: bold; /* Make the text bold */
    color: #000000; /* Set your desired text color */
    padding: 20px; /* Adjust the padding as needed */
    background-color: #ffffff; /* Set your desired background color */
}

#hear p {
    margin: 10px 0; /* Adjust the paragraph margin as needed */
}

/* Styles for the paragraph section */
.para {
    font-size: medium;
    font-style: unset;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
}

/* Styles for the footer */
footer {
    background-color: #ccc;
    padding: 10px;
    text-align: center;
}
