@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* General */

:root {
  --primary: #e7a93c;
  --on-primary: #fff;

  --background-primary: #fff;
  --background-secondary: #f4f6f8;
  --on-background: #212529;

  --border: #dfe2e4;

  --transition: all 0.5s ease;

  --title-padding: 1rem;
  --text-padding: 1.5rem;
  --section-padding: 3rem;
  --container-padding: 2.5rem 4rem;
  --button-padding: 0.6rem 2.25rem;

  --header-title: 4rem;
  --header-subtitle: 2rem;
  --title: 35px;
  --title-small: 30px;
  --title-smaller: 21px;
  --text: 18px;
  --text-smaller: 16px;
  --text-smallest: 14px;

  --border-radius: 80px;
  --shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

body.dark {
  --background-primary: #161819;
  --background-secondary: #1f2123;
  --on-background: #fff;
  --border: #212122;
  --shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px, rgba(0, 0, 0, 0.15) 0px 0px 8px;
}

@media (max-width: 1280px) {
  :root {
    --title-padding: 0.65rem;
    --text-padding: 1rem;
    --header-title: 2.6rem;
    --header-subtitle: 1.5rem;
  }
}

@media (max-width: 850px) {
  :root {
    --header-title: 2.3rem;
    --header-subtitle: 1.2rem;
  }
}

@media (max-width: 560px) {
  :root {
    --title: 21px;
    --title-small: 18px;
    --text: 16px;
    --text-smaller: 14px;
    --text-smallest: 12px;
    --section-padding: 1rem;
    --container-padding: 1.5rem 2rem 1.5rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--background-primary);
}

html,
body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: var(--background-primary);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 20px;
}

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

ul {
  list-style: none;
}

img {
  width: 100%;
}

section {
  padding: var(--section-padding) 0;
}

.scroll {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  outline: none;
  cursor: pointer;
  z-index: 999;
}

.container {
  max-width: 100rem;
  position: relative;
  padding: var(--container-padding);
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  text-align: left;
}

.grid-column-1 {
  margin-right: 1.5rem;
}

.grid-column-2 {
  margin-left: 1.5rem;
}

.container .title {
  font-size: var(--header-title);
  line-height: 1;
  color: var(--on-background);
}

.grid .text,
.title {
  max-width: 550px;
}

.container-title {
  font-size: var(--title);
  color: var(--on-background);
  text-align: center;
  line-height: 1;
  padding-bottom: var(--title-padding);
}

.button {
  padding: var(--button-padding);
  font-weight: 500;
  font-size: var(--button);
  cursor: pointer;
  display: inline-block;
  border-radius: var(--border-radius);
  background: var(--primary);
  color: var(--on-primary);
  transition: var(--transition);
  outline: none;
  border: none;
  position: relative;
  line-height: 1.6;
}

.button i {
  margin-left: 5px;
}

.button:hover {
  opacity: 0.8;
}

.text {
  font-size: var(--text);
  color: var(--on-background);
  padding: var(--text-padding) 0;
}

.image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  max-width: 650px;
}

section {
  padding: var(--section-padding) 0;
}

@media (max-width: 1280px) {
  .grid-column-1 {
    margin-right: 1rem;
  }
  .grid-column-2 {
    margin-left: 1rem;
  }
  .image img {
    max-width: 500px;
  }
}

@media (max-width: 850px) {
  .grid {
    grid-template-columns: 1fr !important;
  }
  .grid-column-1 {
    margin-right: 0rem;
    margin-top: 1rem;
    order: 1;
  }
  .grid-column-2 {
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
  .grid.alt .grid-column-1 {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .grid.alt .grid-column-2 {
    margin-bottom: 0rem;
    margin-top: 1rem;
  }
  .image img {
    max-width: 400px;
    margin: auto;
  }
  .grid.alt .grid-column-1 {
    order: 0;
  }
}

@media (max-width: 390px) {
  .image {
    display: none;
  }
}

/* Navbar */

nav {
  position: relative;
  width: 100%;
  background: var(--background-primary);
  z-index: 9999;
}

.nav-container {
  margin: auto;
  max-width: 90rem;
  display: flex;
  height: 4.5rem;
  justify-content: space-between;
  align-items: center;
  padding: var(--container-padding);
}

.nav-logo h3 {
  font-weight: 600;
  font-size: var(--title-small);
  color: var(--on-background);
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav-links li a {
  color: var(--on-background);
  transition: var(--transition);
  padding: 0.4rem 0.8rem;
  font-weight: 500;
  font-size: var(--text-smaller);
}

.nav-links li:hover a {
  opacity: 0.8;
}

.theme-toggle {
  cursor: pointer;
}

.theme-toggle i {
  color: var(--on-background);
  transition: var(--transition);
  padding: 0.4rem 0.8rem;
  font-size: var(--nav-size);
}

.theme-toggle:hover i {
  opacity: 0.8;
}

.nav-mobile-menu {
  display: none;
  cursor: pointer;
  font-size: var(--title-smaller);
  color: var(--on-background);
}

.nav-mobile {
  height: 100%;
  width: 100%;
  width: 0;
  position: fixed;
  left: -100%;
  top: 0;
  background: var(--background-primary);
  width: 100vw;
  display: none;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.nav-mobile.active {
  left: 0;
}

.nav-mobile-links {
  text-align: center;
}

.nav-mobile-links li {
  margin-bottom: 10px;
}

.nav-mobile-links li a {
  color: var(--on-background);
  font-size: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.nav-mobile-links li:hover a {
  opacity: 0.8;
}

.nav-mobile-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  cursor: pointer;
  color: var(--on-background);
}

.nav-mobile-close i {
  font-size: var(--title);
  transition: var(--transition);
}

.nav-mobile-close:hover i {
  opacity: 0.8;
}

@media (max-width: 750px) {
  .nav-links,
  .theme-toggle {
    display: none;
  }
  .nav-mobile-menu {
    display: block;
  }
  .nav-mobile {
    display: flex;
  }
}

@media (max-width: 350px) {
  .nav-container {
    justify-content: flex-end;
  }
  .nav-logo {
    display: none;
  }
}

/* Header */

header .container {
  padding: var(--container-padding);
  height: calc(100vh - 6rem);
  min-height: calc(100vh - 9rem) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 450px) {
  header .container {
    height: calc(100vh - 9rem);
  }
}

.header-title {
  font-size: var(--header-title);
  color: var(--on-background);
  line-height: 1.4;
  position: relative;
  text-align: center;
}

.header-subtitle {
  color: var(--primary);
  font-size: var(--header-subtitle);
  text-align: center;
}

.header-title .status {
  color: var(--on-background);
}

.header-title .status.online {
  animation: online 3s infinite;
}

.header-title .status.dnd {
  animation: dnd 3s infinite;
}

.header-title .status.idle {
  animation: idle 4s infinite;
}

@keyframes online {
  0% {
    text-shadow: 0px 0px 0px #3ba55d, 0px 0px 0px #3ba55d, 0px 0px 0px #3ba55d, 0px 0px 0px #3ba55d;
  }
  50% {
    text-shadow: 1px 1px 4px #3ba55d, 1px -1px 4px #3ba55d, -1px 1px 4px #3ba55d,
      -1px -1px 4px #3ba55d;
  }
  100% {
    text-shadow: 0px 0px 0px #3ba55d, 0px 0px 0px #3ba55d, 0px 0px 0px #3ba55d, 0px 0px 0px #3ba55d;
  }
}

@keyframes dnd {
  0% {
    text-shadow: 0px 0px 0px #f74447, 0px 0px 0px #f74447, 0px 0px 0px #f74447, 0px 0px 0px #f74447;
  }
  50% {
    text-shadow: 1px 1px 4px #f74447, 1px -1px 4px #f74447, -1px 1px 4px #f74447,
      -1px -1px 4px #f74447;
  }
  100% {
    text-shadow: 0px 0px 0px #f74447, 0px 0px 0px #f74447, 0px 0px 0px #f74447, 0px 0px 0px #f74447;
  }
}

@keyframes idle {
  0% {
    text-shadow: 0px 0px 0px #faa81a, 0px 0px 0px #faa81a, 0px 0px 0px #faa81a, 0px 0px 0px #faa81a;
  }
  50% {
    text-shadow: 1px 1px 4px #faa81a, 1px -1px 4px #faa81a, -1px 1px 4px #faa81a,
      -1px -1px 4px #faa81a;
  }
  100% {
    text-shadow: 0px 0px 0px #faa81a, 0px 0px 0px #faa81a, 0px 0px 0px #faa81a, 0px 0px 0px #faa81a;
  }
}

.header-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  bottom: 1rem;
  padding: 0 2rem;
}

.scroll-down {
  background: var(--background-secondary);
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: var(--transition);
}

.scroll-down:hover {
  opacity: 0.8;
}

.scroll-down i {
  color: var(--on-background);
}

.header-socials {
  display: flex;
  gap: 20px;
}

.header-social {
  width: 35px;
  height: 35px;
  background: var(--background-secondary);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.header-social i {
  color: var(--on-background);
}

.header-social:hover {
  opacity: 0.8;
}

/* About Me */

.about-info-container {
  display: flex;
  gap: 50px;
}

.about-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-info .info-title {
  color: var(--primary);
  font-size: var(--text-smaller);
}

.about-info .info-description {
  color: var(--on-background);
  font-size: var(--text-smaller);
}

.about-me-wrapper {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.vsc-container.vsc-hide,.spotify-container.spotify-hide {
  display: none;
}

.vsc-container {
  box-shadow: var(--shadow);
  height: 100%;
  min-width: 60%;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
}

.vsc-top {
  display: flex;
  gap: 20px;
}

.vsc-image img {
  width: 80px;
  border-radius: 5px;
}

.vsc-title {
  color: var(--on-background);
  font-weight: 500;
  font-size: var(--text-smaller);
}

.vsc-details {
  color: #a8abb0;
  font-size: var(--text-smallest);
}

.vsc-state {
  color: #a8abb0;
  font-size: var(--text-smallest);
}

.vsc-timestamp {
  color: #a8abb0;
  font-weight: 400;
  font-size: var(--text-smallest);
}

.spotify-container {
  box-shadow: var(--shadow);
  height: 100%;
  min-width: 60%;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
}

.spotify-top {
  display: flex;
  gap: 20px;
}

.spotify-image img {
  width: 80px;
  border-radius: 5px;
}

.spotify-title {
  color: var(--on-background);
  font-weight: 500;
  font-size: var(--text-smaller);
}

.spotify-by {
  color: #a8abb0;
  font-size: var(--text-smallest);
}

.spotify-on {
  color: #a8abb0;
  font-size: var(--text-smallest);
}

.spotify-bottom {
  display: flex;
}

.spotify-length {
  width: 100%;
}

.song-length {
  height: 5px;
  width: 100%;
  /* max-width: 400px; */
  background: var(--background-secondary);
  transform: scaleX(1);
  transform-origin: left;
  border-radius: 10px;
}

.song-length span {
  height: 100%;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(1);
  transform-origin: left;
  background: var(--on-background);
}

.song-length span {
  width: 25%;
}

.spotify-times {
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  color: var(--on-background);
  font-size: var(--text-smallest);
}

@media (max-width: 400px) {
  .spotify-container{
    width: 100%;
  }
  .vsc-container{
    width: 100%;
  }
  .about-info-container {
    gap: 20px;
  }
  .about-info-column {
    gap: 10px;
  }
}

/* Skills */

#skills {
  text-align: center;
}

#skills .title {
  margin: auto auto calc(var(--title-padding) + var(--text-padding)) auto;
}

.skills-wrapper {
  display: flex;
}

.skills-container {
  display: flex;
  flex-direction: column;
  max-width: 70rem;
  flex-wrap: wrap;
  gap: 20px 170px;
  text-align: left;
  margin: auto;
  margin-top: 0;
  width: 40%;
}

.skill .skill-title {
  font-size: var(--text);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  color: var(--on-background);
}

.skill-level {
  height: 10px;
  width: 100%;
  background: var(--background-secondary);
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 10px;
  box-shadow: var(--shadow);
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

.skill-level span {
  height: 100%;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@media screen and (max-width: 600px) {
  .skills-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .skills-container{
    width: 95%;
    height: fit-content;
  }
}

/* Education */

#education {
  text-align: center;
}

#education .title {
  margin: auto auto calc(var(--title-padding) + var(--text-padding)) auto;
}

.education-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.education {
  display: flex;
  align-items: center;
}

.education-date {
  margin-right: 70px;
}

.education-date p {
  font-size: var(--text);
  color: var(--on-background);
}

.education-title {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 5px;
}

.education-title h3 {
  font-size: var(--title-smaller);
  margin-right: 20px;
  color: var(--on-background);
}

.education-title p {
  font-size: var(--text-smaller);
  color: var(--on-background);
}

.education-info {
  text-align: left;
}

.education-info p {
  font-size: var(--text);
  color: var(--on-background);
}

@media (max-width: 740px) {
  .education {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .education-date {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  .education-title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .education-title p {
    margin-top: 5px;
  }
}

/* Projects */

#projects {
  text-align: center;
}

#projects .title {
  margin: auto auto calc(var(--title-padding) + var(--text-padding)) auto;
}

.projects-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.project {
  width: 400px;
  border-radius: 15px;
  background: var(--background-primary);
  text-align: left;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.project-image {
  height: 200px;
}

.project-image img {
  height: 100%;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  background-position: center;
}

.project-info {
  padding: 20px;
}

.project-title {
  font-size: var(--title-smaller);
  color: var(--primary);
}

.project-description {
  font-size: var(--text);
  color: var(--on-background);
  margin-bottom: 10px;
}

.project-link {
  color: var(--primary);
  transition: var(--transition);
}

.project-link:hover {
  opacity: 0.8;
}

@media (max-width: 560px) {
  .project {
    width: 350px;
  }
  .project-image {
    height: 170px;
  }
}

/* Contact */

#contact .text.alt {
  padding: 0;
}

#contact {
  border-radius: 15px;
}

.contact-form {
  width: 80%;
  border-radius: 15px;
}

.text span {
  font-weight: 500;
  margin-left: 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: inline-block;
  color: var(--on-background);
}

.form-group .form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 24px 16px;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 10px;
  font-size: var(--text-smaller);
  color: var(--on-background);
  background: var(--background-primary);
}

.form-group textarea {
  height: 150px !important;
  resize: none;
  padding: 16px !important;
}

.submit-btn {
  padding: var(--button-padding);
  font-weight: 500;
  font-size: var(--button);
  cursor: pointer;
  display: inline-block;
  border-radius: 10px;
  background: var(--primary);
  color: var(--on-primary);
  transition: var(--transition);
  outline: none;
  border: none;
  position: relative;
  line-height: 1.6;
  width: 100%;
}

.submit-btn:hover {
  opacity: 0.8;
}

.required {
  color: red;
}


@media (max-width: 850px) {
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  #contact .text{
    font-size: var(--text-smaller);
  }
}

/* Footer */

footer {
  background: var(--background-secondary);
  padding: var(--container-padding);
  text-align: center;
}

.footer-logo {
  font-weight: 600;
  font-size: var(--title-small);
  color: var(--on-background);
}

.footer-description {
  font-size: var(--text-smaller);
  color: var(--on-background);
  margin-bottom: var(--text-padding);
}

.copyright {
  font-size: var(--text-smaller);
  color: var(--on-background);
}

/* Log In */

.login-main {
  overflow: hidden;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login {
  text-align: center;
  width: 100%;
  position: relative;
}

#login .title {
  margin: auto auto calc(var(--title-padding) + var(--text-padding)) auto;
}

.login {
  text-align: left;
}

.login-container {
  max-width: 20rem;
  margin: auto;
}

.login-error {
  color: red;
  font-size: var(--text-smaller);
  margin-bottom: var(--title-padding);
  line-height: 1.1;
  text-align: center;
}

.login label {
  color: var(--on-background);
  font-size: var(--text-smaller);
}

.login-group {
  display: block;
  width: 100%;
  height: 50px;
  padding: 24px 16px;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 10px;
  font-size: var(--text-smaller);
  color: var(--on-background);
  background: var(--background-primary);
  margin-bottom: 15px;
}

.login-btn {
  padding: var(--button-padding);
  font-weight: 500;
  font-size: var(--button);
  cursor: pointer;
  display: inline-block;
  border-radius: 10px;
  background: var(--primary);
  color: var(--on-primary);
  transition: var(--transition);
  outline: none;
  border: none;
  position: relative;
  line-height: 1.6;
  width: 100%;
}

.login-btn:hover {
  opacity: 0.8;
}

/* Gallery */

.gallery-container {
  max-width: 100rem;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: var(--container-padding);
}

.gallery-container img {
  max-width: 90%;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item button {
  width: 150px;
  padding: 0.4rem;
  font-weight: 400;
  font-size: var(--button);
  cursor: pointer;
  display: inline-block;
  border-radius: var(--border-radius);
  background: var(--primary);
  color: var(--on-primary);
  transition: var(--transition);
  outline: none;
  border: none;
  position: relative;
  line-height: 1.1;
  margin-top: 10px;
}

.error-text-div{
  display: flex;
  justify-content: center;
  color: var(--primary);
  height: 80vh;
  align-items: center;
}

.error-text-div span{
  font-size: var(--title-small);
  font-weight: 800;
}

@media (max-width: 980px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 630px) {
  .gallery-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .error-text-div{
    padding: 20px
  }

  .error-text-div span{
    font-weight: 300;
    font-size: var(--title-smaller);
  }
}

/* Shapes */

.circle1 {
  position: absolute;
  width: 220px;
  top: 5%;
  right: 1%;
  z-index: -1;
}

.cube1 {
  position: absolute;
  width: 140px;
  bottom: 13%;
  left: 10%;
  z-index: -1;
}

.circle2 {
  position: absolute;
  width: 120px;
  right: 0;
  top: 12%;
  z-index: -1;
}

.cube2 {
  position: absolute;
  width: 120px;
  left: 0;
  z-index: -1;
}

.halfcircle {
  position: absolute;
  width: 300px;
  left: 5%;
  z-index: -1;
}

.circle3 {
  position: absolute;
  width: 120px;
  right: 20%;
  bottom: -30%;
  z-index: -1;
}

.triangle1 {
  position: absolute;
  width: 180px;
  right: 5%;
  top: 30%;
  z-index: -1;
}

.triangle2 {
  position: absolute;
  width: 140px;
  bottom: 0;
  left: -10%;
  z-index: -1;
}

.circle4 {
  position: absolute;
  width: 180px;
  right: -9%;
  top: 0;
  z-index: -1;
}

.circle5 {
  position: absolute;
  width: 130px;
  left: 20%;
  top: 0;
  z-index: -1;
}

.triangle3 {
  position: absolute;
  width: 160px;
  bottom: -60%;
  transform: rotate(49deg);
  z-index: -1;
}

.cube3 {
  position: absolute;
  width: 150px;
  right: 15%;
  top: 20%;
  z-index: -1;
}

@media (max-width: 430px) {
  .circle1 {
    display: none;
  }
  .cube1 {
    display: none;
  }
}

@media (max-width: 390px) {
  .circle1 {
    display: none;
  }
  .cube1 {
    display: none;
  }
}

/*  */

@media (max-width: 1360px) {
  .circle2 {
    width: 100px;
    right: 1%;
    top: -2%;
  }
  .cube2 {
    width: 120px;
    left: 2%;
    bottom: -30%;
  }
}

@media (max-width: 700px) {
  .circle2 {
    display: none;
  }
  .cube2 {
    display: none;
  }
}

/*  */

@media (max-width: 1190px) {
  .halfcircle {
    width: 150px;
    left: 3%;
  }
  .circle3 {
    width: 100px;
  }
  .triangle1 {
    width: 150px;
  }
}

@media (max-width: 1030px) {
  .triangle1 {
    width: 110px;
  }
}

@media (max-width: 940px) {
  .halfcircle {
    display: none;
  }
  .triangle1 {
    display: none;
  }
}

@media (max-width: 740px) {
  .circle3 {
    display: none;
  }
}

/*  */

@media (max-width: 820px) {
  .triangle2 {
    width: 110px;
    bottom: 0;
    left: -10%;
  }
}

@media (max-width: 740px) {
  .triangle2 {
    display: none;
  }
  .circle4 {
    display: none;
  }
}

/*  */

@media (max-width: 970px) {
  .circle5 {
    width: 110px;
  }
  .triangle3 {
    width: 140px;
  }
  .cube3 {
    width: 120px;
  }
}

@media (max-width: 800px) {
  .circle5 {
    width: 100px;
    left: 10%;
  }
  .triangle3 {
    width: 120px;
    bottom: -50%;
  }
  .cube3 {
    width: 100px;
    right: 7%;
  }
}

@media (max-width: 600px) {
  .circle5 {
    display: none;
  }
  .triangle3 {
    display: none;
  }
  .cube3 {
    display: none;
  }
}

/* File */

.file-body{
  background-color: rgb(33, 33, 33);
  height: auto;
  min-height: 100vh;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.file-body .content{
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: rgb(21, 21, 21);
  padding:  0px 30px 30px 30px;
  border-radius: 24px;
}

.file-body .header{
  margin: 15px 0;
  font-size: 28px;
  font-weight: 600;
}

.file-body .media-info{
  color: white;
}

.file-body .buttons-container{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.file-body button{
  width: 150px;
  padding: 0.4rem;
  border-radius: 80px;
  background: #e7a93c;
  color: #FFFFFF;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.file-body .media{
  width: 700px;
  border-radius: 5px;
  border-left: 5px solid #e7a93c;
}

@media screen and (max-width: 700px){
  .file-body .media{
      width: 100%;
  }
  .file-body .content{
      margin: 10px;
      padding: 10px 20px 20px 20px;
  }
  .file-body .header{
      margin: 5px;
      font-size: 18px;
      font-weight: 500;
      overflow-wrap: normal;
  }
  .file-body button{
      width: 100px;
  }
}
