::-webkit-scrollbar {
	width: 1vw;
}

::-webkit-scrollbar-track {
	background: #242728;
	border-radius: 0.4vw;
}

::-webkit-scrollbar-thumb {
	background: #129968;
	border-radius: 0.4vw;
}

::-webkit-scrollbar-thumb:hover {
	background: #59B795;
}

body {
	font-family: 'Ubuntu', sans-serif;
	background: #1C1F20;
	color: #777777;
}

/* CSS do Nav*/
nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1vh;
	height: 10vh;
	width: 100%;
	background-color: #242728;
	box-shadow: 0 1vh 2vh #1A1C1D;
}

.logo-header {
	height: 8vh;
	padding: 2vh 0 0 0;
	transition: 1s all;
}

.logo-header:hover {
	transform: scale(0.9);
}

/* CSS do Text Box*/
.titulo-textarea {
	margin-top: 3vh;
	font-size: 3.5vh;
	font-weight: bold;
	text-align: center;
	color: #777777;
}

.text-area {
	display: flex;
	flex-flow: column wrap;
	align-items: center;
	justify-content: center;
}

#textInput, #textOutput {
	width: 48vw;
	height: 24vh;
	padding: 2vh;
	border-radius: 1.5vh;
	text-align: center;
	font-size: 2.8vh;
	color: #777777;
	overflow: scroll;
	overflow-y: auto;
	overflow-x: auto;
	resize: none;
}

#textInput, #textOutput{
	margin-top: 4vh;
	border: 0.4vh solid transparent;
	transition: 1.2s all;
}


#textInput:hover {
	border: 0.4vh solid #129968;
}

textarea::-webkit-scrollbar {
	width: 0.6vw;
}

textarea::-webkit-scrollbar-track {
	display: none;
}

textarea::-webkit-scrollbar-thumb {
	background: #41ad86;
	border-radius: 0.2vw;
}

textarea:focus, input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

#textOutput {
	margin-top: 4vh;
}

textarea {
	background-color: #242728;
}

/* CSS dos Botões*/
.buttons {
	display: flex;
  	margin-top: 3vh;
  	flex-flow: row wrap;
  	align-items: center;
  	justify-content: center;
  	white-space: nowrap;
  	gap: 2vw;
}

#btnCriptografar, #btnDescriptografar {
  	width: 14vw;
  	height: 8vh;
  	background-color: #129968;
  	color: #EEEEEE;
  	margin: 0 0.5vw;
  	flex-flow: row wrap;
  	border: none;
  	border-radius: 4vh;
  	white-space: nowrap;
  	font-size: 2.5vh;
  	font-weight: bold;
  	transition: 1s all;
  	cursor: pointer;
}

#btnCopiar, #btnApagar {
  	width: 6vw;
  	height: 8vh;
  	background-color: #129968;
	color: #EEEEEE;
	margin: 0 0.5vw;
	flex-flow: row wrap;
	border: none;
	border-radius: 4vh;
	white-space: nowrap;;
	font-size: 4vh;
	transition: 1s all;
	cursor: pointer;
}

#btnCriptografar:hover, #btnDescriptografar:hover {
	background: #0C6B48;
}

#btnCopiar:hover {
	background: #0B5394;
}

#btnApagar:hover {
	background: #990000;
}

/* CSS do Aviso*/
.text-alert {
	display: flex;
	margin-top: 2.8vh;
	flex-flow: column wrap;
	align-items: center;
	justify-content: center;
	font-size: 2.8vh;
}

/* CSS Icon Shield*/
.icon-shield {
	display: flex;
	margin-top: 6vh;
	flex-flow: column wrap;
	align-items: center;
	justify-content: center;
	color: #129968;
	font-size: 18vh;
}

/* CSS do Rodapé*/
.footer-box {
	height: 20vh;
	width: 100%;
	background-color: #242728;
	margin-top: 4vh;
	text-align: center;
}

strong {
	color: #129968;
	font-weight: bold;
}

 .fa-brands {
 	margin: 3.5vh 1vw;
 	font-size: 7vh;
	color: #59b795;
 	transition: 0.8s all;
 }

.fa-brands:hover {
	color: #129968;
}

 .copyright {
	text-align: center;
	font-size: 2.5vh;
 }

 @media screen and (max-width: 1280px) {
 		.titulo-textarea {
		font-size: 2.5vw;
		margin: 1.5vh 8vw 0;
	}

	#textInput, #textOutput {
		width: 62vw;
		height: 24vh;
		margin-top: 3vh;
		font-size: 3vh;
	}

	#btnCriptografar,
	#btnDescriptografar {
    width: 16vw;
    height: 8vh;
    font-size: 2.2vh;
	}

	#btnCopiar,
	#btnApagar {
    width: 8vw;
    height: 8vh;
    font-size: 3.5vh;
	}

	.text-alert {
		font-size: 2vw;
		text-align: center;
	}

	.icon-shield {
		font-size: 11vw;
	}

	.fa-brands {
		font-size: 5vw;
	}

	.copyright {
		font-size: 1.8vw;
	}

 }

 @media screen and (max-width: 940px) {

	.titulo-textarea {
		font-size: 5.2vw;
		margin: 1.5vh 8vw 0;
	}

	#textInput, #textOutput {
		width: 70vw;
		height: 18vh;
		margin-top: 3vh;
		font-size: 2.5vh;
	}

	#btnCriptografar,
	#btnDescriptografar {
    width: 42vw;
    height: 8vh;
    font-size: 2.2vh;
	}

	#btnCopiar,
	#btnApagar {
    width: 20vw;
    height: 8vh;
    font-size: 3.5vh;
	}

	.text-alert {
		font-size: 3.5vw;
		text-align: center;
	}

	.icon-shield {
		font-size: 22vw;
	}

	.fa-brands {
		font-size: 10vw;
	}

	.copyright {
		font-size: 3.5vw;
	}
}

@media screen and (max-width: 480px) {

	.titulo-textarea {
		font-size: 7vw;
		margin: 1vh 8vw 0;
	}

	#textInput, #textOutput {
		width: 80vw;
		height: 19vh;
		margin-top: 3vh;
		font-size: 2.2vh;
	}

	#btnCriptografar,
	#btnDescriptografar {
    width: 42vw;
    height: 8vh;
    font-size: 2vh;
	}

	#btnCopiar,
	#btnApagar {
    width: 20vw;
    height: 8vh;
    font-size: 3.5vh;
	}

	.text-alert {
		font-size: 4vw;
		text-align: center;
	}

	.icon-shield {
		font-size: 22vw;
	}

	.fa-brands {
		font-size: 12vw;
	}

	.copyright {
		font-size: 4vw;
	}
}

@media screen and (max-width: 280px) {

	.titulo-textarea {
		font-size: 7vw;
		margin: 1vh 8vw 0;
	}

	#textInput, #textOutput {
		width: 80vw;
		height: 22vh;
		margin-top: 3vh;
		font-size: 2.2vh;
	}

	#btnCriptografar,
	#btnDescriptografar {
    width: 42vw;
    height: 6vh;
    font-size: 1.8vh;
	}

	#btnCopiar,
	#btnApagar {
    width: 20vw;
    height: 6vh;
    font-size: 3vh;
	}

	.text-alert {
		font-size: 4vw;
		text-align: center;
	}

	.icon-shield {
		font-size: 22vw;
	}

	.fa-brands {
		font-size: 14vw;
	}

	.copyright {
		font-size: 4vw;
	}
}