/* This is the general*/
body {
    margin: 0;
}
p {
    margin: 0;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}
h1, h2 {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    margin: 0;
    margin-bottom: 10px;
    font-size: 30px;
}
html {
    scroll-behavior: smooth;
}
/* This is the head*/
/*section*/
section {
    padding: 10px;
    background-color: rgb(255, 255, 255);
    border: none;          /* Remove all borders */
    border-bottom: 2px solid rgb(117, 117, 117); /* Add a border only to the top */
}
/* Add spacing at the top of each section to ensure it's not hidden behind the fixed header */
section:target {
    scroll-margin-top: 140px; /* This is the height of the fixed header */
}
/*section*/
.head-container {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: rgb(161, 161, 161);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.logo-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50px;
    height: 50px;
    position: relative;
}
.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.name {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    color: sienna;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.title-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 70px;
    background-color: rgb(161, 161, 161);
    margin-top: 70px;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-top: 2px solid rgb(117, 117, 117); /* Add a border only to the top */
    border-left: none; /* Ensure no border on the left */
    border-right: none; /* Ensure no border on the right */
    border-bottom: none; /* Ensure no border on the bottom */
    z-index: 999;
}
.try-it {
    color: black;
}
.home, .about, .contact, .try-it {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    color: black;
    font-weight: 400;
}
.home:hover, .about:hover, .contact:hover, .try-it:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
/* This is the head*/

/* Example container styles */
.example-container {
    margin-top: 140px;
    display: flex;
    flex-wrap: wrap;
    height: 350px;
}
.example-left-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: lightblue;
}
.example-paragraph-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.example-text {
    font-size: 22px;
    font-weight: bold;
}
.removehand-text {
    font-size: 18px;
    font-weight: 500;
}
.removehand-text {
    margin-top: 5px;
    margin-bottom: 5px;
}

.Try-it-button {
    background-image: linear-gradient(#f7f8fa ,#e7e9ec);
    border-color: #adb1b8 #a2a6ac #8d9096;
    border-style: solid;
    border-width: 1px;
    border-radius: 3px;
    box-shadow: rgba(255,255,255,.6) 0 1px 0 inset;
    box-sizing: border-box;
    color: #0f1111;
    cursor: pointer;
    display: inline-block;
    font-family: "Amazon Ember",Arial,sans-serif;
    font-size: 14px;
    height: 29px;
    font-size: 13px;
    outline: 0;
    overflow: hidden;
    padding: 0 11px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}
        
.Try-it-button:active {
    border-bottom-color: #a2a6ac;
}
        
.Try-it-button:active:hover {
    border-bottom-color: #a2a6ac;
}
        
.Try-it-button:hover {
    border-color: #a2a6ac #979aa1 #82858a;
}
        
.Try-it-button:focus {
    border-color: #e77600;
    box-shadow: rgba(228, 121, 17, .5) 0 0 3px 2px;
    outline: 0;
}
    
.example-right-container {
    position: relative;
    width: 50%; /* Adjust as needed */
    height: 100%; /* Adjust as needed */
    overflow: hidden;
    background-color: aquamarine;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
    
}

.image-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.image {
    max-height: 100%;
    object-fit: contain;
}

.label {
    font-size: 16px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    position: absolute; /* Ensure it can be positioned within the parent container */
    bottom: 10px; /* Position it at the bottom of the image */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to truly center it */
    white-space: nowrap; /* Prevent text wrapping */
}
.Introduction-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.Introduction-left-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: pink;
    flex: 1;
    padding: 20px;
}
.Introduction-right-container {
    display: flex;
    min-width: 200px;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 238, 140);
    flex: 1;
    padding: 20px;
}
.photo-container {
    background-color: coral;
}
.member-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: wheat;
    height: 50px;
}
.div-shirt-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.div-shirt {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 5px;
}
.img-shirt {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sale-percentage {
    position: absolute;
    top: 8px;
    right: 0px;
    font-size: 12px;
    background-color: black;
    color: white;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.white {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    vertical-align: center;
    justify-content: center;
}
.div-addtocart {
    display: flex;
    flex-direction: row;
    vertical-align: center;
    justify-content: center;
}
.addtocart-button {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    color: black;
    border-width: 1px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.div-contact-container {
    background-color: khaki;
    height: 250px;
}