*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  font-family: "Varela Round", sans-serif;
  line-height: 1.6;
  background-color: #343992;
  min-height: 100%;
  overflow-x: hidden;
  position: relative;
  height: auto;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
}

section {
  padding: 7em 0;
}


a, a:visited { 
    text-decoration: none;
    color: black;
}



.container {
  width: 85%;
  max-width: 85em;
  margin: 0 auto;
}

.split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.split > * {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  min-width: 15em;
}

.spacing > * + * {
  margin-top: var(--spacer, 2rem);
}

.primary-title {
  font-size: 4rem;
  font-size: clamp(3rem, calc(5vw + 1rem), 4.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-title {
  text-align: center;
  font-size: clamp(2.5rem, calc(5vw + 1rem), 4rem);
  line-height: 1;
  color: #17353d;
  margin-bottom: 5rem;
}


.hero {
  color: white;
  text-align: center;
  padding: 15em 0;
}

@supports (background-blend-mode: multiply) {
  .hero {
    background: url(../img/stock_math.jpg), radial-gradient(#777, black);
    background-blend-mode: multiply;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}

.featured {
  background: #eee;
}

.featured__item {
  display: block;
  position: relative;
}

.featured__img {
  border-radius: 100%;
}

.featured__details {
  opacity: 0;
  -webkit-transition: opacity 250ms linear;
  transition: opacity 250ms linear;
}

.featured__details span {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
}

.skill-title {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.skill-caption{
    font-size: clamp(0.7rem, 3vw, 1rem);
}


.kachel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kachel > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  min-width: 15em;
}

.skill {
  border: 3px solid #aaa;
  border-radius: .5em;
  padding: 1em;
  text-align: center;
  background-color: white;
  transition-duration: 500ms;
}





.skill:hover{
    transform: scale(1.1);
}

footer {
	background: rgba(0, 0, 0, 0.2);
  bottom: 0;
	height: 22px;
	left: 0;
	position: absolute;
	width: 100%;
  margin-top: -50px;
	}

	footer a {
	position: relative;
	font-size: 13px;
	margin-top: 2em;
	padding-left: 1em;
	text-decoration: none;
	}
/*# sourceMappingURL=main.css.map */