/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2 {
  font-family: Black Ops One;
  color: #ff7300;
}

p {
  color: #747474;
}

header h1 {
  font-size: 3rem;
  text-align: center;
  padding: 1rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

body {
  background-color: #0c0c0c;
}

.box {
  background-color: #ffffff;
}

section.hero {
  box-shadow: inset 0px 0px 10px 0px rgba(12, 12, 12, 0.5);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 2rem;
  margin-bottom: 1rem;
}
section.hero div h2 {
  margin: 1rem;
  text-align: center;
}
section.hero img {
  border-radius: 100%;
  width: 100%;
}

section.skill {
  box-shadow: inset 0px 0px 10px 0px rgba(12, 12, 12, 0.5);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  section.hero {
    flex-wrap: nowrap;
  }
  section.hero img {
    border-radius: 100%;
    width: 30%;
  }
  section.skill {
    flex-wrap: nowrap;
  }
  section.skill div {
    flex: 1;
  }
}
.title {
  display: flex;
  justify-content: center;
}

span {
  font-family: Black Ops One;
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: #ff7300;
  text-transform: uppercase;
  animation: flip 2s;
  animation-delay: calc(0.2s * var(--i));
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
    color: #ffffff;
  }
  30% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.box {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 10px 0px rgba(12, 12, 12, 0.5);
  margin: 1rem;
  animation: moveLeftToRight 1s ease-in-out;
}
.box h2 {
  margin: 1rem;
  text-align: center;
}
.box p {
  margin: 1rem;
  text-align: center;
}
.box img {
  width: 100%;
  border-radius: 0.5rem;
}

.btn-div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

button {
  text-align: center;
  background-color: #ff7300;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 0.5rem;
  animation: moveLeftToRight 1s ease-in-out;
}
button:hover {
  background-color: #0c0c0c;
  color: #ffffff;
}
button:active {
  transform: scale(0.9);
}

@keyframes moveLeftToRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    color: #ff7300;
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}/*# sourceMappingURL=styles.css.map */