/* * Global */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Raleway', serif;
  min-height: 100vh;
  font-size: 16px;
  text-align: center;
  line-height: 2;
  color: #f3f3f3;
  background: linear-gradient(
    -45deg,
    #262626 10%,
    #293c2c 40%,
    #293c2c 50%,
    #262626 100%
  );
  background-attachment: fixed;
}

ul {
  list-style-type: none;
  margin-bottom: 30px;
}

a {
  color: #4093ec;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 30px;
  cursor: default;
  margin-top: 20px;
  color: #78ffd4;
}

li::before {
  content: '- ';
  color: #e1dcdc;
}

/* * Wrapper */

.wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 15px;
  margin: 20px auto;
}
