:root {
  --main-background-color: #f6f8f3;
}

* {
  /* margin: 5px; */
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin-trim: 0;
  line-height: 30px;
  margin: 0;
  cursor: url(/images/icons8-cursor-50.png) 4 4, auto;
}

.header {
  color: #333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px;
  width: 80px;
  height: fit-content;
  border-right: #333;
}

nav {
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
}
.divider {
  width: 2px;
  height: 40px;
  background: black;
  margin: 0 8px;
}
.menu {
  font-size: 18px;
  font-weight: bold;
  /* margin-top: 45px; */
}

.main-wrapper {
  flex: 1;
  display: flex;
  background: white;
  gap: 20px;
  padding: 20px;
}
.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.title-section {
  color: #797877;
  padding: 40px;
  text-align: start;
  margin-top: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-section h1 {
  font-size: 50px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  margin-bottom: -10px;
}
/*.main-content {
  color: #797877;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  margin-left: 200px;
  margin-right: 200px;
  line-height: 35px;
}*/
a {
  color: inherit;
  text-decoration: none;
  background: none;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: bold;
}


html,body{
  width: 100%;
  height: 100%;
}

.container{
  padding: 75px 0;
  margin: 0 auto;
  width: 1140px;
}

h1{
  position: relative;
  margin-bottom: 45px;
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  text-transform: uppercase;
  color: #424242;
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
}

.item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;

  &:hover{
    flex: 7;
  }
}

.item-1 {
  background-image: url('https://images.unsplash.com/photo-1499198116522-4a6235013d63?auto=format&fit=crop&w=1233&q=80');
}

.item-2 {
  background-image: url('https://images.unsplash.com/photo-1492760864391-753aaae87234?auto=format&fit=crop&w=1336&q=80');
}

.item-3 {
  background-image: url('https://images.unsplash.com/photo-1503631285924-e1544dce8b28?auto=format&fit=crop&w=1234&q=80');
}

.item-4 {
  background-image: url('https://images.unsplash.com/photo-1510425463958-dcced28da480?auto=format&fit=crop&w=1352&q=80');
}

.item-5 {
  background-image: url('https://images.unsplash.com/photo-1503602642458-232111445657?auto=format&fit=crop&w=1234&q=80');
}

.social{
  position: absolute;
  right: 35px;
  bottom: 0;

  img{
    display: block;
    width: 32px;
  }
}

.footer {
  color: #718dae;
  padding: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: -10px;
}
.line {
  background-color: #718dae;
  height: 2px;
  border: 2px;
  width: 110%;

  border-radius: 4px;
}
nav a {
  color: #718dae;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  margin: 0 10px;
  cursor: url(/images/icons8-cursor-50.png) 4 4, auto;
}

nav a:hover {
  text-decoration: underline;
}
