:root {
  --spacing-none: 0;
  --spacing-extra-small: 0.25rem;
  --spacing-small: 0.5rem;
  --spacing-medium: 1rem;
  --spacing-large: 2rem;
  --spacing-extra-large: 4rem;
  --spacing-extra-extra-large: 8rem;
  --spacing-extra-extra-extra-large: 16rem;
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  background: no-repeat url(../images/backgroundPaper.png) 0 0;
  background-color: #ebebeb;
  background-repeat: repeat;
}

body {
  color: #333;
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

a {
  color: #07c9c5;
  text-decoration: none;
}

.alink {
  color: #07c9c5;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:visited {
  color: rgb(0, 80, 160);
}

label {
  display: block;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  padding: 0.4em;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 2px;
}

input:disabled {
  color: #ccc;
}

input[type="range"] {
  height: 0;
}

button {
  color: #333;
  background-color: #f4f4f4;
  outline: none;
}

button:disabled {
  color: #999;
}

button:not(:disabled):active {
  background-color: #ddd;
}

button:focus {
  border-color: #666;
}

.lookhere {
  color: #ff7d87;
}

mark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #ffedd5 50%);
  color: #333;
}
.img-svg {
  border-radius: 100%;
  width: 10rem;
  height: 10rem;
}

li {
  margin-top: 1rem;
  margin-bottom: 1rem;
  
  
  
}

h1 {
  font-size: 3rem;
  line-height: 1.5;
  font-family: "Courier Next", courier, monospace;
  margin-bottom: var(--spacing-none);
}

h2 {
  font-size: 2.25rem;
  line-height: 1.5;
  font-family: "Courier Next", courier, monospace;
  margin-bottom: var(--spacing-none);
}

h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  padding-left: var(--spacing-small);
  margin-bottom: var(--spacing-none);
  color: #ff7d87;
}

u{
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #ffedd5 50%);
  color: #333;
  
}

.sections {
  margin-left: 3rem;
  margin-right: 2rem;
}

/* Small screens */
@media only screen and (max-width: 600px) {
  .sections {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

/* Large screens */
@media only screen and (min-width: 600px) {
  .sections {
    margin-left: 3rem;
    margin-right: 2rem;
  }
}

p {
  width: 100%;
}

/* small screen */
@media screen and (max-width: 48em) {
p{
  font-size: 1rem;
}

li{
  font-size: 0.9rem;
}

 h2{
   
   font-size: 1.5rem;
 }
 


}

/* medium screen */
@media screen and (min-width: 48em) and (max-width: 64em) {
  p {
    width: 100%;
    font-size: 1.30rem;
  }

   li{
    font-size: 1.20rem;
  }
    h2{
    font-size: 2rem;
    
  }

 
}

/* large screen */
@media screen and (min-width: 64em) {
  p {
    width: 100%;
    font-size: 1.5rem;
  }

  li{
    font-size: 1.4rem;
    width: 100%;
  }
    h2{
    font-size: 2.25rem;
    
  }

}
