/*
  Description: Walter Budzian Master Stylesheet
  Media: Screen
  Version: 1.0.0
  Author: Walter Budzian
*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

/* General Elements */

* {
  margin: 0;
  padding: 0;
  outline: 0 none;
}

/* Applies a natural box layout model to all elements */

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-family: "Times", serif;
  font-size: 62.5%;
  color: #181818;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.circle {
    height: 40px;
    width: 40px;
    background-color: #222;
    border-radius: 50%;
    display: inline-block;
    margin-left: 2.5px;
  margin-right: 2.5px;
  }

.square {
    height: 40px;
    width: 40px;
    background-color: #616161;
    display: inline-block;
    margin-left: 2.5px;
  margin-right: 2.5px;
  }

.triangle {
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 40px solid #a1a1a1;
  display: inline-block;
  margin-left: 2.5px;
  margin-right: 2.5px;
}

article {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.main-section {
  display: flex;
  margin: 3em 0 0;
}

.main-heading {
  width: 20%;
  padding: 0.5em 0;
  font-size: 2em;
  line-height: 1.6;
}

.main-body {
  width: 80%
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  margin: 0 0 1em;
  font-size: 2em;
  line-height: 1.6;
}

li {
  list-style: circle;
  padding: 0.5em 0;
}

h1 {
  margin-bottom: 20px;
  font-family: 'Times';
  font-size: 3.2em;
  font-weight: 400;
}

p {
  margin-bottom: 15px;
  font-size: 2em;
  line-height: 1.6;
}

.divider {
  margin-top: 15px;
  margin-bottom: 15px;
}

.align-right {
  text-align: right;
}

a {
  color: #0000EE;
  text-decoration: none;
  border-bottom: 3px dotted #0000EE;

  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}

a:hover {
  color: red;
}

a:visited {
    color: #551A8B;
    font-weight: bold;
}

@media only screen and (max-width: 480px) {
  p {
    font-size: 1.8em;
  }
}



