@import 'layout/header.css';

@import 'components/carousel.css';
@import 'components/spinner.css';

@import 'pages/home.css';
@import 'pages/web.css';
@import 'pages/photo.css';
@import 'pages/contact.css';


* {
    color: #282a59;
    background-color: #f2f0e9;
    text-decoration: none;
  }

  html, body {margin: 0; height: 100%; overflow: hidden}


  html {
    font-size: 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #f2f0e9;
  }
  
  *,
  *::before,
  *::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
  }
  
  body {
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-family: "Montserrat", serif;
  }
  
  ::-webkit-scrollbar {
    display: none;
  }


.flex {
  display: flex;

  &-jc-sb {
    justify-content: space-between;
  }

  &-jc-c {
    justify-content: center;
  }

  &-ai-c {
    align-items: center;
  }
}

 @media only screen and (max-width: 800px) {
    .header {
      padding: 30px 8px;
    }
  }

 @media only screen and (max-width: 800px) {
    .carousel img {
      width: auto;
   }
 }
