@import url("./palett.css");

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  color: var(--text);
  font-family: 'Roboto Mono', monospace;
  ;
}

a {
  color: var(--text-200);
  text-decoration: none;
}

a:hover {
  color: var(--text-50);
  text-decoration: none;
}

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

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.presentation h1 {
  font-weight: 700;
  font-size: 8vw;
  text-align: center;
}

.presentation h2 {
  font-weight: 700;
  font-size: 3vw;
  text-align: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcases {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100vh;
}

.showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-900);
  padding: 20px;
  margin-bottom: 15px;
}

.showcase img {
  width: 40vh;
  margin: 15px;
}

.showcase h2 {
  font-size: 280%;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  
  body {
    background-color: var(--background);
    position: relative;
    scroll-behavior: smooth;
  }
  
  main{
    overflow-x: hidden;
  }
  .presentation h1 {
    font-weight: 700;
    font-size: 12vw;
  }

  .presentation h2 {
    font-weight: 400;
    font-size: 6vw;
  }

}