:root {
	--primary-strong: #26c0ab;
	--very-dark: #00494d;
	--dark-grayish: #5e7a7d;
	--grayish: #6d9ca2;
	--light-grayish: #c5e4e7;
	--very-light: #d2efef;
	--white: #ffffff;
}

html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}

body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	font-family: "Space Mono", monospace;
	font-size: 1.6rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

#root,
#__next {
	isolation: isolate;
}

.main {
	background-color: var(--light-grayish);
}

.main__h1 {
	color: var(--very-dark);
	font-size: 2rem;
	letter-spacing: 0.5rem;
	text-align: center;
	padding: 4rem 0;
}

.main__container {
	background-color: var(--white);
	width: 100%;
	border-radius: 2rem;
	padding-bottom: 3rem;
}

.section01 {
	padding: 2rem 2rem;
}

.section01__p {
	color: var(--dark-grayish);
	font-weight: bold;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.section01__input--tip {
	width: 100%;
	background-color: var(--very-light);
	border: 0px;
	padding: 1rem 1rem;
	margin-bottom: 1rem;
	border-radius: 1rem;
}

.section01__input--tip:focus {
	outline: none;
	border: 2px solid #00494d;
	box-shadow: 0 0 3px #00494d;
}

.section01__h3--tip {
	color: var(--dark-grayish);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.section01__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	justify-items: center;
	margin-bottom: 2rem;
}

.section01__container button {
	background-color: var(--very-dark);
	width: 100%;
	border: 0;
	color: var(--white);
	text-align: center;
	font-weight: bold;
	border-radius: 1rem;
	font-size: 2.5rem;
	padding: 0.5rem 4rem;
}

.section01__container button:hover {
	cursor: pointer;
	transition: 0.3s;
	background-color: var(--primary-strong);
}

.section01__container button:nth-child(3) {
	background-color: var(--primary-strong);
	color: var(--very-dark);
}

.section01__container button:nth-child(3):hover {
	background-color: var(--very-dark);
	color: var(--white);
}

.section01__container input {
	width: 100%;
	border: 0;
	background-color: var(--very-light);
	border-radius: 1rem;
	padding: 0 1rem;
}

.section01__container input:focus {
	outline: none;
	border: 2px solid #00494d;
	box-shadow: 0 0 3px #00494d;
}

.section01__container input::placeholder {
	text-align: center;
	color: var(--dark-grayish);
	font-weight: bold;
	font-size: 2rem;
}

.section01__h3--people {
	color: var(--dark-grayish);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.section01__input--people {
	width: 100%;
	background-color: var(--very-light);
	border: 0px;
	padding: 1rem 1rem;
	margin-bottom: 1.5rem;
	border-radius: 1rem;
}

.section01__input--people:focus {
	outline: none;
	border: 2px solid #00494d;
	box-shadow: 0 0 3px #00494d;
}

.section02 {
	background-color: var(--very-dark);
	border-radius: 1rem;
	width: 90%;
	margin: 0 auto;
	padding: 2rem;
}

.section02__container--tip {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section02__container--tip h2 {
	color: var(--white);
	font-size: 1.4rem;
}

.section02__container--tip p {
	color: var(--primary-strong);
	font-weight: bold;
	font-size: 3rem;
}

.section02__container--people {
	display: flex;
	justify-content: space-between;
}

.section02__container--people h2 {
	color: var(--white);
	font-size: 1.4rem;
}

.section02__container--people p {
	color: var(--primary-strong);
	font-weight: bold;
	font-size: 3rem;
}

.section02__button {
	width: 100%;
	margin-top: 2rem;
	background-color: var(--primary-strong);
	border: 0;
	color: var(--very-dark);
	font-weight: bold;
	padding: 0.5rem 0;
	border-radius: 1rem;
}

.section02__button:hover {
	cursor: pointer;
	transition: 0.3s;
	background-color: hsl(172, 67%, 55%);
}
