:root
{
	--main-color:#16161D;
	--second-color:#FF851B;
	--action-color:#0074D9;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body
{
	margin: 0;
	font-family: "Montserrat", sans-serif;
  background-size: cover;
	background-repeat: no-repeat, repeat;
	background-position: center;
}

main
{
	height: 100vh;
	display: flex;
	align-items: center;
	background: rgba(22, 22, 20, 0.8);
	color: #fff;
}

.abril-fatface-regular {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

.info
{
	width: 70vw;
	margin: 0 auto;


	& .info__title
	{
		text-align: center;
		color: var(--second-color);
		font-size: 6rem;
		margin-bottom: 30px;
	}

	& .info__text
	{
		font-size: 2rem;
		margin: 50px 0px;
		font-weight: bold;

		& p:nth-child(2)
		{
			font-size: 2.5rem;
		}
	}

	& .info__form
	{
		position: relative;
		width: 100%;

		& .info__form__input
		{
			width: 100%;
			border: 2px solid var(--second-color);
			font-size: 2rem;
			padding: 10px 30px;
			border-radius: 50px;
		}

		& input[type=submit]
		{
			position: absolute;
			right: 0;
			background-color: var(--second-color);
			color: #fff;
			border: none;
			font-size: 2rem;
			border-radius: 0px 50px 50px 0px;
			padding: 10px 40px;
			top:2px;
			cursor: pointer;
			font-weight: bold;
		}

		& .info__form--focus:focus
		{
			outline: none;
		}
	}
}


@media only screen and (max-width: 768px) {

  .info
	{
		width: 80vw;


		& .info__title
		{
			font-size: 4rem;
		}

		& .info__text
		{
			font-size: 1rem;
			margin: 70px 0px;
			font-weight: bold;

			& p:nth-child(2)
			{
				font-size: 1.3rem;
			}
		}

		& .info__form
		{
			position: relative;
			width: 100%;

			& .info__form__input
			{
				font-size: 1rem;
				border-radius: 10px;
				padding: 10px;
			}

			& input[type=submit]
			{
				position: relative;
				width: 100%;
				font-size: 1rem;
				border-radius: 5px;
				padding: 10px 40px;
				margin-top: 10px;
			}
	}
}

