  /* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)
  */

  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed, 
  figure, figcaption, footer, header, hgroup, 
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure, 
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol, ul {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  /* width */
  ::-webkit-scrollbar {
    height: 8px;
    width: 8px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff; 
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: red; 
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: pink; 
  }

/* custom css */

html{
  color: red;
}

  marquee{
    margin-top: 10px;
    /* width: 98%; */
    cursor: crosshair;
  }

   /* span:nth-child(odd) {
    -webkit-text-security: disc;
  }
  span:nth-child(even) {
    -webkit-text-security: square;
  }

   span:hover, summ:hover {
    -webkit-text-security: none;
  } */

  main {
    border-right: red solid 1px;
    border-left: red solid 1px;
    margin: 10px;
  }

  h2{
    margin-top: 10px;
    text-transform: uppercase;
  }

  a {
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
  }

  a:hover{
  color: pink;
  }

  img{
    height: 100%;
    margin-right: 5px;
  }

  summary{
    display: flex;
    justify-content: space-between;
    width: 95%;
    cursor:pointer;
  }

  details.project{
    border-top: 1px red solid;
    padding-top: 5px;
    width: 98%;
    margin: 10px;
  }

  .project-dets {
    padding: 10px 0;
  }

  .project-imgs {
    display: flex;
    overflow-x: scroll;
    height: 50vh;
  }

  aside{
    margin-top: 20px;
  }