#socials {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 100%;
	z-index: 2;
	background-color: var(--background-blue);
  }
  
  #socials h1 {
	color: var(--text-alt);
  }
  
  #youtube-container {
	display: none;
  }
  
  @media only screen and (min-width: 1160px) {
	#youtube-container {
	  display: block;
	  width: 80%;
	  margin: 40px 0 76px;
	}
  }