@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

.site-header .container {
  max-width: var(--site-width);
  padding-top: 1rem;
}
.site-header .left-logo {
  position: relative;
  z-index: 1;
  background-color: var(--transparent);
}
.site-header .left-logo img {
  height: 100px;
  width: 100px;
  margin: 0 auto;
  background-color: var(--transparent);
}
.site-header .inline-menu {
  padding: 0rem 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.site-header .inline-menu li {
  background: transparent;
  padding: 0.8rem 0.5rem;
}
.site-header .inline-menu li a {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  background-color: var(--transparent);
  transition: all 0.3s ease;
  text-decoration: none;
}
.site-header .inline-menu li a:hover, .site-header .inline-menu li a.active {
  color: var(--yellow);
  border-bottom: 1px solid --yellow;
}

.hamburger {
  display: none;
  font-size: 2.5em;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  position: absolute;
  background: var(--transparent);
  right: 30px;
  top: 10px;
}
.hamburger .hamburger.hide {
  display: none;
}
.hamburger i {
  background: var(--transparent);
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 0;
  }
  .inline-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .inline-menu ul {
    flex-direction: column;
  }
  .inline-menu ul li {
    height: auto;
    padding: 5px 20px;
    margin-left: 5px;
  }
  .inline-menu ul li:hover {
    border-radius: 5px 0 0 5px;
  }
  .inline-menu ul li.active {
    border-radius: 5px 0 0 5px;
    font-weight: initial;
  }
  .hamburger {
    display: block;
    top: 40px;
  }
  .inline-menu.close {
    display: none; /* Or adjust as needed */
  }
  .inline-menu.open {
    display: block; /* Or adjust as needed */
  }
  .inline-menu.active {
    transform: translateX(0);
  }
}
footer {
  font-family: "Arvo", serif;
  padding-top: 5rem;
  margin-left: 0;
  background-color: var(--transparent);
  position: relative;
  z-index: 1;
}
footer span {
  font-size: 1rem;
}

@media only screen and (max-width: 600px) {
  footer span {
    font-size: 0.8rem;
  }
}
#connect .col-12 {
  margin-top: 4rem;
  margin-left: 0;
  position: relative;
  z-index: 1;
}

.col-12 h2 {
  padding-top: 3rem;
  font-family: "Arvo", serif;
  font-weight: 100;
  animation: neon 5s infinite;
}

#connect p {
  text-align: left;
  padding-bottom: 3rem;
  font-weight: 100;
  padding-top: 3rem;
  padding-left: 10rem;
  padding-right: 7rem;
}

@keyframes neon {
  0%, 15%, 25%, 49%, 61%, 100% {
    text-shadow: var(--white) 0 0 10px, var(--pink) 0 0 12px, var(--white) 0 0 30px;
  }
  40%, 60% {
    text-shadow: none;
  }
}
@media only screen and (max-width: 600px) {
  #connect h2 {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  #connect p {
    padding: 10px 30px;
  }
}
.flex {
  display: flex;
}

.flex--between {
  justify-content: space-between;
}

.vertical-center {
  align-items: center;
}

.container {
  width: 100%;
  max-width: var(--site-width);
  height: auto;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.container--fluid {
  max-width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

span {
  background-color: var(--tr);
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

.col-1 .col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  background-color: transparent;
}

.centered {
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 0rem 1.5rem;
    margin-bottom: 2rem;
  }
  .vertical-center {
    align-items: flex-start;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    grid-column: span 12;
  }
}
:root {
  --black: rgb(39, 37, 37);
  --green: rgb(51, 96, 33);
  --white: hwb(0 100% 0%);
  --yellow: rgb(248, 200, 74);
  --pink: rgb(246, 183, 183);
  --site-width: 80rem;
  --spacing: 40rem;
  --background-color: transparent;
}

.highlight {
  color: var(--pink);
  background-color: var(--transparent);
}

.highlight2 {
  color: var(--yellow);
  background-color: var(--transparent);
  font-family: "Arvo", serif;
}

* {
  font-family: "Poppins", "Arvo", sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Arvo", serif;
  font-size: 1.2rem;
  font-weight: 100;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote {
  margin-bottom: 1.5rem;
  padding-left: 0;
  background-color: var(--transparent);
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 0.9rem;
  }
  /* Heading adjustments */
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }
  h4 {
    font-size: 0.9rem;
  }
  h5 {
    font-size: 0.7rem;
  }
  h6 {
    font-size: 0.5rem;
  }
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote {
    margin-bottom: 0rem;
  }
}
/* Regualr Button styles */
.col-3.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}
.col-3.centered .button {
  margin-left: 0;
  display: inline-block;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.5s;
}
.col-3.centered .button:hover {
  transform: translateY(-5px);
}
.col-3.centered .button::before {
  content: "";
  position: absolute;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  transition: 0.5s;
}
.button:hover {
  transform: translateY(-5px);
}
.button::before {
  content: "";
  position: absolute;
}

.button-wrapper {
  color: var(--white);
  background-color: var(--transparent);
  text-decoration: none;
}

.button-wrapper:hover {
  color: var(--yellow);
}

.button i {
  font-size: 1rem;
  color: var(--white);
  background-color: var(--transparent);
  padding-left: 0.5rem;
}
.button i:hover {
  color: var(--yellow);
}

@media only screen and (max-width: 600px) {
  .col-3.centered {
    flex-direction: column;
    margin-top: 2rem;
  }
  .button {
    padding: 2px 2px;
    font-size: 0.9rem;
    margin: 0;
  }
  .button-wrapper {
    padding: 5px;
  }
  .button:hover {
    transform: translateY(-5px);
  }
  .button::before {
    content: "";
    position: absolute;
  }
}
/* Social Icons */
.social-links {
  position: relative;
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 0;
}
.social-links li {
  margin: 10px;
  background-color: var(--transparent);
}
.social-links li a {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-size: 2em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: radial-gradient(500.12% 500.08% at 1.2% 15.24%, rgba(255, 255, 255, 0.2) 1%, rgba(255, 255, 255, 0.01) 25.25%);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 45px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  transition: 0.5s;
  overflow: hidden;
}
.social-links li a:hover {
  transform: translateY(-5px);
}
.social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: rgb(255, 255, 255);
  transform: skewX(45deg) translateX(150px);
  transition: 0.5s;
  z-index: -1;
}
.social-links li a:hover::before {
  transform: skewX(45deg) translateX(-150px);
  background: rgba(255, 255, 255, 0.2);
}
.social-links li i {
  font-size: 0.9em;
  background-color: var(--transparent);
}

@media only screen and (max-width: 600px) {
  .social-links {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .social-links li {
    margin: 5px;
  }
  .social-links li a {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .social-links li a::before {
    background: rgb(255, 255, 255);
    transform: skewX(90deg) translateX(300px);
  }
  .social-links li a a:hover::before {
    transform: skewX(90deg) translateX(-300px);
  }
  .social-links li a i {
    font-size: 0.8em;
    background-color: var(--transparent);
  }
}
/* Interaction Sidebar Navigation */
.section-nav {
  position: fixed;
  top: 15vh;
  right: 30px;
  width: 220px;
  z-index: 2;
}
.section-nav ol {
  padding: 5px 15px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 5px;
}
.section-nav li {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  background-color: var(--transparent);
}
.section-nav a {
  background-color: var(--transparent);
  text-decoration: none;
}

.section-nav .section-nav a:hover,
.section-nav a:focus {
  color: var(--yellow);
}

.section-nav li.active > a {
  color: var(--yellow);
  font-weight: 500;
  background-color: var(--transparent);
}

.section-nav li.active:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}

@media only screen and (max-width: 600px) {
  .section-nav {
    position: fixed;
    display: flex;
    overflow-x: auto;
    top: 110px;
    left: 30px;
  }
  .section-nav ol {
    padding: 5px 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin-bottom: 5px;
  }
  .section-nav a {
    text-decoration: none;
    font-size: 0.8rem;
  }
}
/* Project Featured */
#project .container .col-12 h1, p {
  position: relative;
  z-index: 1;
}

.row {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  margin-top: 2rem;
}

.project {
  width: 466px;
  height: 482px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 14px;
  position: relative;
  transition: transform 0.4s ease-out;
}

.project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  transform: opacity 0.5s ease-in-out;
}

.project:hover::before {
  opacity: 1;
}

.project:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.col-12 h1 {
  margin: 0;
  margin-top: 2.5rem;
}

.wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  background-color: var(--transparent);
  z-index: 2;
  color: var(--white);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transform: translateY(100%);
  transition: transform 0.2s ease-in-out;
}

.caption.box {
  border-radius: 0;
}

.project:hover .caption {
  transform: translateY(0%);
}

/* caption-content */
.caption-content {
  text-align: left;
  padding: 1rem;
  margin-top: 1rem;
}
.caption-content h6 {
  text-transform: uppercase;
  color: var(--yellow);
  padding-top: 2rem;
  padding-left: 1.5rem;
  line-height: 0.5rem;
  font-weight: 300;
}
.caption-content h3 {
  padding-left: 1.5rem;
  line-height: 0.3rem;
  margin: 0;
}
.caption-content p {
  padding-left: 1.5rem;
  padding-top: 1.6rem;
  margin: 0;
  font-size: 0.9rem;
}

/* Featurerd Project */
.wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.skill-name {
  list-style: none;
  display: flex;
  gap: 10px;
  text-align: center;
  margin-top: 1rem;
  padding-left: 1.5rem;
  padding-bottom: 1rem;
}
.skill-name .tag {
  font-size: 0.7rem;
  font-weight: 200;
}

@media only screen and (max-width: 600px) {
  .project {
    width: 100%;
    height: 100%;
    margin: 10px;
    position: relative;
    transition: none;
  }
  .project::before {
    opacity: 1;
    transform: none;
  }
  .project:hover::before {
    opacity: 1;
  }
  .caption {
    position: static;
    transform: none;
    transition: none;
    border-radius: 0;
  }
  .caption.box {
    border-radius: 0;
  }
  .caption-content {
    margin-top: 0;
    padding: 1rem;
    padding-top: 0;
    padding-left: 1rem;
  }
  .caption-content h6 {
    padding-top: 1rem;
    font-size: 0.9rem;
    padding-left: 0rem;
  }
  .caption-content h3 {
    line-height: 3rem;
    padding-left: 0rem;
  }
  .caption-content p {
    font-size: 1rem;
    padding-top: 0;
    padding-bottom: 1rem;
    padding-left: 0rem;
  }
  .wrapper {
    padding-bottom: 0rem;
  }
  .skill-name {
    padding-bottom: 0;
    margin-top: 0;
    padding-left: 0rem;
  }
  .skill-name .tag {
    font-size: 0.55rem;
  }
}
.easye {
  padding-top: 10%;
  margin-left: 40%;
  position: relative;
  text-align: center;
  background-color: var(--transparent);
}

#round {
  border-radius: 100px;
  position: absolute;
  font-size: 1rem;
  padding-top: 2.4rem;
}

#round.small {
  font-size: 0.8rem;
}

.grow2:hover {
  transform: scale(1.1);
}

/* Banner circle Animations */
.circle1 {
  background-color: var(--yellow);
  width: 100px;
  height: 100px;
  right: 80%;
  top: 420%;
  animation: moveCircle1 5s ease-in-out infinite;
}

.circle2 {
  background-color: var(--pink);
  width: 100px;
  height: 100px;
  right: 80%;
  top: 380%;
  animation: moveCircle2 5s ease-in-out infinite;
}

.circle3 {
  background-color: var(--green);
  width: 100px;
  height: 100px;
  right: 80%;
  top: 400%;
  animation: moveCircle3 5s ease-in-out infinite;
}

.circle4 {
  background-color: var(--white);
  width: 170px;
  height: 170px;
  top: 380%;
  right: 70%;
}

@keyframes moveCircle1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(160px, 100px);
  }
}
@keyframes moveCircle2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100px, 180px);
  }
}
@keyframes moveCircle3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-120px, -100px);
  }
}
@media only screen and (max-width: 600px) {
  .easye {
    padding-top: 70%;
    margin-left: 45%;
  }
  #round {
    border-radius: 100px;
    position: absolute;
    font-size: 0.6rem;
    padding-top: 1.3rem;
  }
  #round.small {
    font-size: 0.44rem;
  }
  .circle1 {
    top: 30%;
    left: 4%;
    width: 60px;
    height: 60px;
  }
  .circle2 {
    top: 18%;
    left: 10%;
    width: 60px;
    height: 60px;
  }
  .circle3 {
    top: 20%;
    right: 80%;
    width: 60px;
    height: 60px;
  }
  .circle4 {
    top: 15%;
    right: 55%;
    width: 150px;
    height: 150px;
  }
  @keyframes moveCircle1 {
    0%, 100% {
      transform: translate(0px, 5px);
    }
    50% {
      transform: translate(120px, 40px);
    }
  }
  @keyframes moveCircle2 {
    0%, 100% {
      transform: translate(-25px, 40px);
    }
    50% {
      transform: translate(-150px, 120px);
    }
  }
  @keyframes moveCircle3 {
    0%, 100% {
      transform: translate(20px, 30px);
    }
    50% {
      transform: translate(-120px, -50px);
    }
  }
}
.box {
  overflow: hidden;
  border-radius: 35px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px) brightness(100%);
  -webkit-backdrop-filter: blur(24px) brightness(100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(90% 90% at 0% 50%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.05) 100%);
}

.circle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.circles {
  list-style: none;
  margin: 10;
  padding: 0;
}

.circles li {
  position: absolute;
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  animation: float 25s infinite;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.circles-yellow {
  background: linear-gradient(to right, var(--yellow), rgba(248, 200, 74, 0.2));
  border: 1px solid rgb(248, 200, 74);
}

.circles-green {
  background: linear-gradient(to right, var(--green), rgba(51, 96, 33, 0.2));
  border: 1px solid rgb(51, 96, 33);
}

.circles-pink {
  background: linear-gradient(to right, var(--pink), rgba(246, 183, 183, 0.2));
  border: 1px solid rgb(246, 183, 183);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(50px);
  }
}
.circles li:nth-child(1) {
  left: 1%;
  top: 20%;
  animation-duration: 20s;
}

.circles li:nth-child(2) {
  left: 7%;
  top: 42%;
  animation-duration: 23s;
}

.circles li:nth-child(3) {
  left: 80%;
  top: 38%;
  animation-duration: 25s;
}

.circles li:nth-child(4) {
  left: 4%;
  top: 160%;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 20%;
  top: 10%;
  animation-duration: 20s;
}

.circles li:nth-child(6) {
  left: 80%;
  top: 80%;
  animation-duration: 24s;
}

.circles li:nth-child(7) {
  left: 80%;
  top: 65%;
  animation-duration: 22s;
}

.circles li:nth-child(8) {
  left: 4%;
  top: 89%;
  animation-duration: 26s;
}

.circles li:nth-child(9) {
  left: 80%;
  top: 95%;
  animation-duration: 24s;
}

.circles li:nth-child(10) {
  left: 80%;
  top: 4%;
  animation-duration: 19s;
}

.tag {
  padding: 3px;
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px) brightness(100%);
  -webkit-backdrop-filter: blur(24px) brightness(100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(rgba(246, 183, 183, 0.4) 40%, rgba(246, 183, 183, 0.4) 100%);
}

.btn1 {
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px) brightness(100%);
  -webkit-backdrop-filter: blur(24px) brightness(100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(90% 90% at 0% 50%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0.05) 100%);
}

@media only screen and (max-width: 600px) {
  circles li {
    width: 150px;
    height: 150px;
  }
}

/*# sourceMappingURL=app.min.css.map */
