html {
  scroll-behavior: smooth;
  padding-top:20px;
  padding-left:40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
line-height: 190%;

}
p{padding: 3px;}
a{
color: #333;
background-color: #FF4790;
padding: 2px;
text-decoration: none;

}

a:link {
  color: #333;
background-color: #FF4790;
padding: 2px;
text-decoration: none;
}

a:visited {
  color: #333;
background-color: #FF4790;
padding: 2px;
text-decoration: none;
}

a:hover {
  color: #333;
background-color: #FF4790;
padding: 2px;
text-decoration: none;
}

a:active {
  color: #333;
background-color: #FF4790;
padding: 2px;
text-decoration: none;
}

.container{
  max-width: 850px;
}
.card{
  
}

.black-line{
  background-color: #333;
  color: #FF4790;
  font-size: 1.3em;  
}
body{

  background: repeating-linear-gradient(
  -65deg,
  #FF1975,
  #FF1975 20px,
  #FF4790 20px,
  #FF4790 40px
);
}


body1 {
    /*base colour*/
    background-color: #FF1975; 
    /*these control the width of the stripes*/
    -webkit-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    background-size: 50px 50px; 
    background-image: 
      -webkit-gradient(linear, 0 0, 100% 100%,
      color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent),
      color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)),
      color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent),
      to(transparent));
    background-image: 
      -webkit-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
      transparent 75%, transparent);
    background-image: 
      -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
      transparent 75%, transparent);
    background-image: 
      -ms-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
      transparent 75%, transparent);
    background-image: 
      -o-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
      transparent 75%, transparent);
    background-image: 
      linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
      transparent 75%, transparent);  
}