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

body, html {
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

#main-section {
  background-image: url('image.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #F18700;
}

.text-area {
	background-color: white;
	padding: 40px;
	width: 33%;
	height: 68%;
	overflow-y: auto;
	top: 17%;
	position: absolute;
}

.title {
  font-size: 3rem;
  color: #f58025;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.subtitle {
  font-size: 1.5rem;
  color: #6c757d;
  font-weight: 400;
}

.footer-links a {
  color: white;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 2060px) {
	#main-section {
		background-size: cover;
	}

	.text-area {
		max-height: 68%;
	}
}

@media (max-width: 1920px) {
	.text-area {
		max-width: 660px;
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 768px) {
	.text-area {
		padding: 20px;
		width: 660px;
		height: 700px;
		overflow-y: auto;
		max-width: 95%;
	}

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}
