@charset "UTF-8";

a {
  color:hotpink;
}

<!DOCTYPE html>
<html>
<head> <style>
p {
  color:#FFE4C4;
/* This is a single-line comment */
  text-big:center;
}

body {
  background-image:url(https://img.mfcimg.com/photos2/268/26831121/101-849-623-460-11408224.jpg);
  background-repeat:no-repeat;
  background-position:right top;
  background-attachment:fixed;
}

#p1 {
  background-color:hsla(120,100%,50%,0.3);
}

/* green with opacity */
#p2 {
  background-color:hsla(120,100%,75%,0.3);
}

/* light green with opacity */
#p3 {
  background-color:hsla(120,100%,25%,0.3);
}

/* dark green with opacity */
#p4 {
  background-color:hsla(120,60%,70%,0.3);
}

/* pastel green with opacity */
p.test1 {
  white-space:nowrap;
  width:200px;
  border:1px solid #000000;
  overflow:hidden;
  text-overflow:clip;
}

p.test2 {
  white-space:nowrap;
  width:200px;
  border:1px solid #000000;
  overflow:hidden;
  text-overflow:ellipsis;
}