@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
  background-color: #f0ece4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

section {
  border-bottom: 1px solid black;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  text-stroke: 1px #1a1a1a;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .section-subtitle {
    font-size: 2rem;
  }
}

.header {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(240, 236, 228, 0.95);
}

.nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: rgba(240, 236, 228, 0.98);
    width: 100%;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-links .nav-link {
    display: block;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .nav-links .nav-link:hover {
    background-color: rgba(26, 26, 26, 0.05);
    border-radius: 5px;
  }
  .nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #888888;
}

.download-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
}
@media (max-width: 768px) {
  .download-link {
    padding: 0.5rem 0.8rem;
    background-color: #1a1a1a;
    color: #f0ece4;
    border-radius: 5px;
    width: auto;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    font-size: 0.9rem;
  }
  .download-link:hover {
    background-color: #343434;
    color: #f0ece4;
  }
}

.download-icon {
  font-size: 0.8rem;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }
}
.mobile-nav-toggle .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}
.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-container {
  display: flex;
  align-items: center;
}

.hero {
  height: 85dvh;
  margin-top: 0;
  margin-top: 130px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero {
    height: -moz-max-content;
    height: max-content;
    margin-top: 80px;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  line-height: 0.9;
  margin-bottom: 4rem;
  position: relative;
}
.hero__title .subtitle {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__title .subtitle::after {
  content: "/";
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  margin: 0 0.2rem;
}
.hero__title .subtitle::before {
  content: "Film editor";
  margin-right: 0.2rem;
}
.hero__title .title {
  font-size: 8rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 0.9;
  margin-bottom: 0;
  position: relative;
}
@media (max-width: 768px) {
  .hero__title .title {
    font-size: 6rem;
  }
}
@media (max-width: 576px) {
  .hero__title .title {
    font-size: 4rem;
  }
}
.hero__title .outline-title {
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  text-stroke: 1px #1a1a1a;
  font-size: 8rem;
  font-weight: 800;
  line-height: 0.9;
  position: relative;
}
@media (max-width: 768px) {
  .hero__title .outline-title {
    font-size: 6rem;
  }
}
@media (max-width: 576px) {
  .hero__title .outline-title {
    font-size: 4rem;
  }
}

.hero__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  gap: 0;
  position: relative;
}
@media (max-width: 768px) {
  .hero__info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.hero__image {
  position: relative;
  perspective: 1000px;
  z-index: 2;
  overflow: visible;
}
.hero__image img {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  will-change: transform, filter;
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  transform-origin: center center;
}
.hero__image img:hover {
  filter: grayscale(0%);
  transform: scale(1.5) rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero__image img {
    transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }
  .hero__image img:hover {
    transform: scale(1.5) rotate(10deg);
  }
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding: 20px 0;
  position: relative;
}
.hero__text p {
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.projects {
  padding: 8rem 0;
}

.projects__nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .projects__nav {
    gap: 1rem;
  }
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #1a1a1a;
  display: grid;
}
.projects__grid > .project-card {
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.projects__grid > .project-card:nth-child(2n) {
  border-right: none;
}
.projects__grid > .project-card:nth-last-child(1), .projects__grid > .project-card:nth-last-child(2) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .projects__grid > .project-card:nth-child(2n) {
    border-right: none;
  }
  .projects__grid > .project-card:nth-last-child(1), .projects__grid > .project-card:nth-last-child(2) {
    border-bottom: none;
  }
}
@media (max-width: 576px) {
  .projects__grid > .project-card {
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
  }
  .projects__grid > .project-card:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
@media (max-width: 576px) {
  .projects__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

.stages {
  padding: 8rem 0;
  background-color: #f0ece4;
}

.stages__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.about-section {
  padding: 8rem 0;
  background-color: #f0ece4;
}
.about-section .container {
  max-width: 1200px;
}

.about-header {
  text-align: left;
  margin-bottom: 4rem;
}
.about-header .section-title {
  font-size: 8rem;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .about-header .section-title {
    font-size: 6rem;
  }
}
@media (max-width: 576px) {
  .about-header .section-title {
    font-size: 4rem;
  }
}
.about-header .section-subtitle {
  font-size: 10rem;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 2rem;
  text-align: left;
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  text-stroke: 1px #1a1a1a;
}
@media (max-width: 768px) {
  .about-header .section-subtitle {
    font-size: 6rem;
  }
}
@media (max-width: 576px) {
  .about-header .section-subtitle {
    font-size: 4rem;
  }
}

.about-content {
  margin-bottom: 4rem;
}
.about-content .about-column {
  max-width: 800px;
}
.about-content .about-column p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.certificate-section {
  margin-bottom: 4rem;
}
.certificate-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.certificate-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #1a1a1a;
}
.certificate-section .certificate-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .certificate-section .certificate-container {
    align-items: center;
  }
}
.certificate-section .certificate-image {
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.certificate-section .certificate-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .certificate-section .certificate-image {
    max-width: 100%;
  }
}
.certificate-section .certificate-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.certificate-section .certificate-download:hover {
  color: #888888;
}
.certificate-section .certificate-download .download-icon {
  font-size: 0.8rem;
}

.skills-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding-top: 3rem;
}
@media (max-width: 576px) {
  .skills-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.skills-section .skills-column h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.skills-section .skills-column h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1a1a1a;
}
.skills-section .skills-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}
.skills-section .skills-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #888888;
}

.footer {
  padding: 2rem 0;
  text-align: right;
}
.footer p {
  font-size: 0.9rem;
  color: #888888;
}

.nav-btn {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}
.nav-btn:hover, .nav-btn.active {
  color: #888888;
}
@media (max-width: 576px) {
  .nav-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

.project-card {
  background-color: #f0ece4;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 2em;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.project-card:nth-child(2n) {
  border-right: none;
}
@media (max-width: 768px) {
  .project-card:nth-child(2n) {
    border-right: 1px solid #1a1a1a;
  }
}
@media (max-width: 576px) {
  .project-card:nth-child(2n) {
    border-right: none;
  }
}
.project-card:nth-last-child(-n+2) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .project-card:nth-last-child(-n+2) {
    border-bottom: 1px solid #1a1a1a;
  }
  .project-card:nth-last-child(-n+2):nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 576px) {
  .project-card:nth-last-child(-n+2) {
    border-bottom: 1px solid #1a1a1a;
  }
  .project-card:nth-last-child(-n+2):last-child {
    border-bottom: none;
  }
}

.project-card__info {
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.project-card__title {
  font-size: 1.2rem;
  font-weight: 700;
}

.project-card__category {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
}

.thumbnail-container {
  border-radius: 15px;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  cursor: pointer;
  background-color: #000;
}
.thumbnail-container:hover .play-button {
  opacity: 1;
}
.thumbnail-container:hover .video-thumbnail {
  transform: scale(1.2);
  opacity: 0.7;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}
.play-button svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
}

.video-modal__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-modal__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}
.video-modal__close:hover {
  color: #ddd;
}

.stage-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.stage-item:first-child {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.stage-item__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 2rem 0;
  cursor: pointer;
}

.stage-number {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888888;
  width: 80px;
  text-transform: uppercase;
}

.stage-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
}
@media (max-width: 576px) {
  .stage-title {
    font-size: 1.2rem;
  }
}

.stage-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.stage-toggle .toggle-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.stage-toggle .toggle-icon::before, .stage-toggle .toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}
.stage-toggle .toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.stage-toggle .toggle-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.stage-toggle.active .toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.stage-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 80px;
}
.stage-item__content.active {
  max-height: 200px;
  padding: 0 0 2rem 80px;
}
@media (max-width: 576px) {
  .stage-item__content {
    padding: 0 0 0 0;
  }
  .stage-item__content.active {
    padding: 0 0 2rem 0;
  }
}

.stage-item__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #888888;
  margin: 0;
}

.help-section {
  padding: 8rem 0;
  background-color: #f0ece4;
}

.help-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .help-content {
    grid-template-columns: 1fr;
  }
}

.help-column p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.skills-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding-top: 2rem;
}
@media (max-width: 576px) {
  .skills-section {
    grid-template-columns: 1fr;
  }
}

.skills-column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #888888;
}

.skills-list li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-section {
  padding: 8rem 0;
  background-color: #f0ece4;
}

.contact-header {
  text-align: left;
  margin-bottom: 4rem;
}
.contact-header .contact-title {
  font-size: 8rem;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .contact-header .contact-title {
    font-size: 6rem;
  }
}
@media (max-width: 576px) {
  .contact-header .contact-title {
    font-size: 4rem;
  }
}
.contact-header .contact-subtitle {
  font-size: 10rem;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 0;
  text-align: left;
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  text-stroke: 1px #1a1a1a;
}
@media (max-width: 768px) {
  .contact-header .contact-subtitle {
    font-size: 6rem;
  }
}
@media (max-width: 576px) {
  .contact-header .contact-subtitle {
    font-size: 4rem;
  }
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 576px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.contact-column {
  border-top: 1px solid #1a1a1a;
  padding-top: 1em;
}
.contact-column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-list li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.showreel {
  padding: 6rem 0;
  background-color: #f0ece4;
  border-bottom: 1px solid #1a1a1a;
}
.showreel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showreel__title {
  font-size: 3rem;
  font-weight: 800;
  margin: 3rem;
  position: relative;
  display: inline-block;
}
.showreel__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .showreel__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .showreel__title {
    font-size: 2rem;
  }
}
.showreel__video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.showreel__video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.showreel__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}/*# sourceMappingURL=main.css.map */