:root {
	--accento: #a78e63;
}

* {
    box-sizing: border-box;
  }
  
  :root {
    --blue: #2B82CF;
    --red: #B20E34;
    --yellow: #ffd166;
  }
  
  body {
    margin: 0;
    font-family: Barlow, sans-serif;
    overflow: hidden;
  }
  
  .mask {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .wrapper {
    width: 100vw;
    height: 400vh;
    display: flex;
    flex-flow: row nowrap;
  }
  
  .column {
    display: flex;
    flex-flow: column nowrap;
    transition: all 0.5s ease-in;
    position: relative;
  }
  
  .left {
    width: 50%;
  }
  
  .right {
    width: 50%;
    transform: translateY(-300vh);
  }
  
  .left div,
  .right div {
    width: 100%;
    background-size: cover;
	height: 100vh;
  }

  .content div {
    /*display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;*/
    height: auto;
    text-align: center;
  }
  
  .content h2 {
    color: black;
    font-size: 50px;
    margin: 0;
  }

.content h1 {
	color: black;
	font-size:60px;
	margin: 0;
}
  
 /* .content a {
    background: var(--accento);
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 10px;
  } */
  
  /* Dot navigation */
  .dots {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: gray;
    border: 2px solid gray;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: var(--accento);
  }
  
  /* Mobile support */
  @media screen and (max-width: 800px) {
    .wrapper {
      /*flex-direction: column;*/
		display:block;
      height: auto;
    }
	  
	  .wrapper .content {
		  min-height:30vh;
	  }
  
  
    .dots {
      display: none;
    }
	  
	  .mask {
		  height:auto !important;
	  }
  
    body {
      overflow: auto;
    }
  }
  