@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,400;10..48,700&display=swap');


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

.container {
    display: flex;
    height: 100%;
    margin: 0;
  }

.left {
    width: 300px;
    overflow: auto;
    padding-left: 20px;
    padding-right: 40px;
  }

  .right {
    flex: 1;
    overflow: auto;
    padding: 20px;

  }

  .bottom-content {
    position: absolute;
    bottom: 20px;
  }


  .text-container {
  }

  .about-me {
    font-weight: bold;
  }

  .projects {
    margin-bottom: 20px;
  }

  .description {
    margin-bottom: 10px;   
  }

 .right .description p {
  width: 75%;
}

.pr-desc {
	padding: 20px;
}

img {

}

.snippet {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

video {
	  margin-bottom: 20px;
  border-radius: 10px;
}

body {
	font-family: 'Bricolage Grotesque', sans-serif;
	background:  #ffffff;
  font-weight: normal;
}


h1 {
	font-weight: bold;
	margin-top: 100px;
	margin-bottom: 40px;
	font-size: 80px;
	line-height: 70px;
}

h2 {
	font-weight: 700;
	font-size: 34px;
	line-height: 40px;
	margin: 0;
	margin-bottom: 14px;
	font-family: 'Bricolage Grotesque';
}

p {
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
}


.about-me {
	font-size: 34px;
	line-height: 40px;
  font-weight: 700;	
	margin-top:20px;
	margin-bottom: 12px;
	font-family: 'Bricolage Grotesque';
}

.description {
	margin-bottom: 32px;
	border-radius: 20px;
	max-width: 100%;
}

.caption {
	font-size: 14px;
	margin-bottom: 30px;
}



div {
	padding: 0;
	margin: 0;
}

.projects {
	margin-bottom: 40px;
}

a {
	color: #000000;
	text-decoration: none;
	border-bottom: 1px solid rgba(51, 51, 51, 0.4);
}

a:hover {
	color: #707070;
	text-decoration: none;
	border-bottom: 1px solid rgba(51, 51, 51, 0.4);
}

a:active {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:focused {
	text-decoration: none;
}


.header-link {
	text-decoration: none;
	color: black;
	border: 0;
}

.social {
	margin-top: 0px;
	margin-bottom: 4px;
}

.container-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }


  .text-container {
    text-align: left;
  }

  p {
    margin: 0;
    line-height: 28px;
  }

.about {
	line-height: 24px;
	margin-bottom: 12px;
}

.description p {
	margin-bottom: 12px;
}

.gray {
	color: #A1A1A1;
}


@media screen and (max-width: 540px) {
	p {
		font-size: 16px;
		line-height: 24px;
	}

	.about {
	margin-bottom: 6px;
	}

	h1 {
		font-size: 24px;
		line-height: 36px;
	}

	h2 {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 8px;
		margin-top: 10px;

	}

	.about-me {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 8px;
	}

 .container {
    flex-direction: column; /* Столбцовая ориентация */
    align-items: stretch; /* Растягиваем блоки на всю ширину */
    height: auto; /* Отменяем фиксированную высоту */
    max-width: 100%; /* Максимальная ширина контейнера */
  }

  .left {
    width: 100%; /* Занимает всю ширину родителя */
    max-width: none; /* Отменяем максимальную ширину */
    overflow: auto; /* Добавляем скролл для левой части */
    box-sizing: border-box; /* Учитываем границы и отступы в общей ширине */
  }

  .right {
    width: 100%; /* Занимает всю ширину родителя */
    max-width: none; /* Отменяем максимальную ширину */
    overflow: auto; /* Добавляем скролл для правой части */
    box-sizing: border-box; /* Учитываем границы и отступы в общей ширине */
  }
    .bottom-content {
    position: relative;
    margin-top: 40px;

  }

  .social {
  	display: inline-block;
  	margin-right: 12px;
  }

  .snippet {
  	margin-bottom: 6px;
  }
}

@media screen and (max-width: 1200px) {

	.right .description p {
  width: 100%;
}
}

 
