/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ LAYOUT ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body {
  text-align: left;
  background-color: #ffffff;
  font-size: 1em;
  background-image: url("art/dots.png");
  background-repeat: repeat-x;
  background-color: #ffffff;
  padding: 0px;
  margin: 0px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.logo {
  width: 1280px;
  height: 300px;
  background-image: url("logo.jpg");
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.container {
  width: 1280px;
  background-color: #ffffff;
  border-radius: 20px;
  margin: 20px auto;
  border: 4px solid #000000;
}


p {
  width: 95%;
  margin: auto;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ IMG ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.occ {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ FLEX ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.three-columns {
  display: flex;
}

.three-columns > * {
    width:calc(100% / 3);
    padding:1rem;
  }

  .column {
    float: left;
    width: 50%;
  	display: inline-block;
  }

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ HEADERS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

h1 {
  font-size: 1em;
  text-indent: 50px;
}

h3 {
  font-size: 2em;
  color: red;
  margin: 20px;
}

h4 {
  color: red;
  font-weight: bold;
  text-indent: 10%;
}

h2 {
  background: red;
  text-indent: 50px;
  font-size: 3em;
  color: white;
  font-weight: bold;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  font-variant: small-caps;
}



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ HR ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ PARAGRAPHS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ LISTS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

ul.indexlist {
  font-size: 2em;
  color: red;
  list-style-type: none;
}

ul.subindexlist {
  font-size: 1em;
  color: red;
  list-style-type: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ LINKS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

ul.indexlist a {
  color: red;
  text-decoration: none;
}

ul.indexlist a:hover {
  color: rgb(189, 55, 55);
  text-decoration: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ TABLES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

table {
  width: 75%;
  margin: auto;
  text-align: center;
}

table td:first-child {
  text-align: left;
}


tr:nth-child(even) {
  background-color: #daecf5;
}


ul.how-can-i-do-that-bitch {
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 20px;
  line-height: 30px;
}

ul.how-can-i-do-that-bitch li {
    display: table;
}

ul.how-can-i-do-that-bitch li span {
   display:     table-cell;
  color: #1e1e1e;
}

ul.how-can-i-do-that-bitch li span:first-child {
  position: relative;
  font-size: 15px;
  overflow: hidden ;
}
ul.how-can-i-do-that-bitch li span:first-child:after{
  content:        "";
  position:       absolute;
  bottom:         0.5em;
  margin-left:    0.5em ;
  width:          100%;
  border-bottom:  1px dashed red ;
}

ul.how-can-i-do-that-bitch li span + span {
  text-align:     right;
  width:          1%   ;       /* Trick it */
  vertical-align: bottom ;     /* Keep Price text bottom-aligned */
  padding-left:   0.5em  ;
  white-space: nowrap;
}
