body {
    background-color: pink;
    background-image: url(https://www.uefa.com/insideuefa/about-uefa/news/025c-0f8e775cbd76-a467351b03e2-1000--mud-plastic-and-grass-the-evolution-of-the-football-pitch/);
}
h3 {
    text-align:center ;
    font-size: 30px;
    color:blue;
    text-shadow: 5px 3px 4px #df0b30;
    /* margin-top: 100px; */
}
h3 {
    color: blue;

}
h2 {
    color: red;
    text-align:center ;
    font-size: 30px;
    color:blue;
    text-shadow: 5px 3px 4px #df0b30;
    /* margin-top: 100px; */
}
body {
    background-color: bisque;
    background-color: pink;
    background-size: cover;
    background-attachment: fixed;
  
 
}
img {
    width: 200px;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}
.row {
    display: flex;
    /* flex-wrap: wrap; */
    width: 75%;
    margin: auto;
    background-image: radial-gradient(yellow, pink);
    padding: 20px;
    border-width: 2px;
    border-style:solid;
    border-color:black;

    border:2px soild black;

    border-radius: 10%;

    box-shadow: 10px 10px blueviolet;
    text-shadow: 0 0 blue;
}
.col {
    width: 100%;
}
.col img {
    width: 300px;
    display: black;
    margin: 10px;
    max-width: 70%;
}
    .slideshow-container * {box-sizing:border-box}

    /* Slideshow container */
    .slideshow-container {
      max-width: 1000px;
      position: relative;
      margin: auto;
    
      background-color: white;
      padding-top: 30px;
      padding-bottom: 30px;
      margin-bottom: 40px;
    }
    .slideshow-container p {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    /* Hide the images by default */
    .mySlides {
      display: none;
    }
    
    /* Next & previous buttons */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      margin-top: -22px;
      padding: 16px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      transition: 0.6s ease;
      border-radius: 0 3px 3px 0;
      user-select: none;
    }
    
    /* Position the "next button" to the right */
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    
    /* On hover, add a black background color with a little bit see-through */
    .prev:hover, .next:hover {
      background-color: rgba(0,0,0,0.8);
    }
    
    /* Caption text */
    .text {
      color: #f2f2f2;
      font-size: 15px;
      padding: 8px 12px;
      position: absolute;
      bottom: 8px;
      width: 100%;
      text-align: center;
    }
    
    /* Number text (1/3 etc) */
    .numbertext {
      color: #f2f2f2;
      font-size: 12px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
    }
    
    /* The dots/bullets/indicators */
    .dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 2px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }
    
    .active, .dot:hover {
      background-color: #717171;
    }
    
    /* Fading animation */
    .fade {
      animation-name: fade;
      animation-duration: 1.5s;
    }
    
    @keyframes fade {
      from {opacity: .4}
      to {opacity: 1}
    }