:root {
  --turqoise: #36D1DC;
  --blue: #5B86E5;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: scroll;
}
.bg--gradient {
  background: linear-gradient(130deg, var(--turqoise), var(--blue));
  -webkit-animation: Animation 15s ease infinite;
  -moz-animation: Animation 15s ease infinite;
  animation: Animation 15s ease infinite;
  background-size: 400% 400%;
}

@-webkit-keyframes Animation {
    0%{background:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@-moz-keyframes Animation {
    0%{background-position:10% 0%}
    50%{background-position:91% 100%}
    100%{background-position:10% 0%}
}
@keyframes Animation { 
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.main--home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1rem 1rem 4rem;
}
@media only screen and (min-device-width: 700px) {
  .main--home {
    max-width: 650px;
  } 
}

/* STYLED COMPONENTS */
a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
a:hover {
  color: var(--blue);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  border: 3px solid white;
}
.avatar:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.hover:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.awards {
  width: 100%;
  height: auto;
  max-width: 600px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
}

.card {
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-flow: column nowrap;
  max-width: 100%;
  box-sizing: border-box;
}
.card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.card--limited {
  width: 100%;
  /* max-width: 600px; */
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;
}
.card__title {
  margin: 0;
  font-size: 1.5rem;
}

.centered {
  align-items: center;
  justify-content: center;
}

.column {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.25rem;
}
.columns--2 {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.mb {
  margin-bottom: 1rem;
}

.meta {
  font-size: 0.9rem;
  font-weight: 300;
}

.row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.row > * {
  padding: 0 1rem;
}
.row--divided > * + * {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

@media only screen and (min-device-width: 700px) {
  .columns--2 {
    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
    justify-content: space-evenly;
  } 
}

ul {
  list-style: none;
  padding: 0;;
}
li {
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
li:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
li + li {
  margin-top: 0.5rem;
}

.tags {
  display: flex;
  flex-flow: row wrap;
  gap: 0.25rem;
  margin: 0.25rem 0;
  font-style: italic;
}
.tag {
  /* padding: 0.25rem 0.5rem; */
  font-size: 0.75rem;
  font-weight: 300;
  text-wrap: nowrap;
}
.tag:hover {
  font-weight: 700;
  /* background: linear-gradient(130deg, var(--turqoise), var(--blue)); */
  /* opacity: 0.6; */
  border-radius: 0.25rem;
  color: black;
  /* transition: background 0.3s ease, color 0.3s ease; */
}