* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 100;
}

html {
  background-color: #0e2a47;
  font-family: 'Spartan', sans-serif, Arial;
  color: #f0932b;
  scroll-behavior: smooth;
}

body{
  background-image: url(img/background.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

p{
  margin-top: 15px;
  text-align: center;
}

h1{
  margin-top: 15px;
  font-size: 25px;
  text-align: center;
}

div > a{
  font-size: 15px;
  color: #192a56;
  font-weight: bold;
}

h3{
  text-align: left;
  margin: 10px 0 0 20px;
  width: 100%;
  font-size:15px;
  color:white;
  font-weight: 400;
}

li {
    list-style: none;
}

a{
  text-decoration: none;
}

hr{
  margin-top: 10px;
  background-color: #f0932b;
  border-color: white;
  height: 3px;
}

img{
  height: 200px;
}

.h1-pages{
  padding-bottom: 10px;
  margin-left: 20px;
  text-align: left;
  margin-top: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 28px;
  font-weight: bold;
  align-self: flex-start;
}

@media only screen and (min-width : 320px)
and (min-height : 700px) {
  *{
    font-size: 15px;
  }
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px)
{
  *{
    font-size: 25px;
  }
  div > a{
    font-size: 30px;
  }
  p {
    margin-top: 35px;
  }
  .h1-pages {
    font-size: 54px;
  }
  h3{
    font-size: 25px;
  }
}
