@import url(./header/style.css);
@import url(./menu/style.css);
@import url(./editor/style.css);
@import url(./form/style.css);
@import url(./card/style.css);

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

body{
  display: flex;
  flex-direction: column;
  height: 220vh;
  width: 100vw;
  justify-content: space-between;
  background-color: var(--dark-blue);
  font-family: 'Inter', sans-serif;
  color: #fff;
}

main{
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.top{
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.down{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

input[type=button]{
  color: #fff;
  height: 40px;
  font-size: 1.1rem;
  background-color: var(--blue-400);
  width: 80%;
  border: none;
  border-radius: 10px;
}

@media screen and (max-width:1300px){
  body{
    height: 220vh;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }

  main{
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .top{
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .down{
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .form{
    order: 1;
  }

  .swiper{
    order: 2;
  }
  
  .menu{
    order: 1;
  }

  .editor{
    order: 2;
  }

  .form{
    order: 3;
  }
}