
body{
    background-color: black;
    background-image: url(/teaBG.jpg);
    background-size: cover;    
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;    
    height: 100vh;
}


h1 {
    color: #f1adb3;
    text-align: center;
    font-family: "Jacquard 12", system-ui;
    font-weight: 400;
    font-style: normal;
    padding: 40px;
    text-shadow: 
    -1px -1px 0 rgb(231, 22, 22), /* Top-left */
    1px -1px 0 black,  /* Top-right */
    -1px 1px 0 black,  /* Bottom-left */
    1px 1px 0 rgb(247, 186, 186);   /* Bottom-right */
    margin-top: 30px;
}

img{
    margin-top: 30px;
}

p {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
    text-shadow: 
    -1px -1px 0 black, /* Top-left */
    1px -1px 0 black,  /* Top-right */
    -1px 1px 0 black,  /* Bottom-left */
    1px 1px 0 black;   /* Bottom-right */
}




/* Navbar float and trasparent code*/

nav {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
    line-height: 50px;
    text-align: center;
}

nav ul {
    float: none;
    margin-right: 30px;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    transition: 0.7s all;
}

nav ul li:hover {
    background-color: rgba(70, 70, 70, 0.295);
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 30px;
}

/*Navbar end*/



/*linkkien värit*/

a {
  color: #D98997; 
  text-decoration: none; 
  font-size: 25px;
  font-weight: 500;
  padding: 5px;
}

a:hover {
  color: #BE6674;
}

a:visited {
  color: #8C4A5C;
}

a:active {
  color: #403336;
}

a icon {
    color: #D98997; 
    background-color: #D98997;
}

/*Linkkien värit loppuu*/





/*Fade in Esittely teksti*/

.fade-in {
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

/*Fade in loppuu*/





/*Footer alkaa*/

footer {
    opacity: 1; 
    background-color: rgba(0,0,0,0.6); 
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #eebdc1;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}


/*Footer loppuu*/

#selfie {
  width: 300px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/*Karuselli */

.carousel-item img {
  max-height: 600px;   /* rajoittaa korkeuden */
  width: auto;         /* säilyttää mittasuhteet */
  margin: 0 auto;      /* keskittää kuvan */
}

#carouselExampleIndicators {
  max-height: 600px;
}
#carouselExampleIndicators img {
  object-fit: contain; /* tai cover jos haluat täyttävän */
  height: 100%;
}