.button-container {
    display: flex;
  }

  .button {
	font-size: 25px;
	margin-left: 30px;
	margin-top: 15px;
	background-color: transparent;
	color: white;
    border: none;
    cursor: pointer;
  }

  .button-color {
	text-decoration: none;
	color: white;
  }

  .button:hover {
	text-decoration: underline;
  }


:root {
	--primary-color: rgba(0, 0, 0, 0.75);
	--overlay-color: rgba(68, 68, 68, 0.85);
	--menu-speed: 0.75s;
	}
	
	* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

	@media screen and (max-width: 48em) {
		.button-color {
		  font-size: 16px;
		}
		
	  }


	  @media screen and (max-width: 48em) {
		.button-color {
		  font-size: 20px;
		}		
	  }
	  
	  
	  /* For smartphones */
	  @media screen and (max-width: 38em) {
		.button-color {
		  font-size: 14px;
		}
		.button {
		  margin-left: 15px;
		}
	  }
	  
	  
	  html::-webkit-scrollbar {
		width: 15px;
		background-color: rgb(73, 73, 73);
	  }
	  
	  html::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	  }
	  
	  html::-webkit-scrollbar-thumb {
	  background: linear-gradient(0deg, rgb(158, 158, 158) 0%, rgb(206, 206, 206) 100%);
	  outline: 1px solid rgb(44, 44, 44);
	  border-radius: 7px;
	  }
	  
	  
	  
	  
	  