@import url('https://fonts.googleapis.com/css?family=Poppins:400,600');

body {
	margin: 0;
	background-color: #2C2C2C;
	font-family: 'Poppins', sans-serif;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

h1,
h2,
h3 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: 'Poppins', sans-serif;
}

h1 {
	text-align: center;
	margin-top: 0px;
	font-size: 40px;
}

h2 {
	text-align: center;
	font-size: 32px;
	color: #596167;
}

h3 {
	text-align: center;
	font-size: 26px;
	color: #596167;
}

a {
	color: #309ADD;
}

.website-container {
	max-width: 800px;
	width: 100%;
	margin: auto;
}

.app,
.result,
.content {
	margin: 20px;
}

.app {
	background-color: #373737;
	border-radius: 15px;
	padding: 40px;
}

.app-result {
	text-align: center;
	padding: 20px 40px;
}

.form-create-url {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.url-field {
	background-color: black;
	color: white;
	border: none;
	margin-right: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 10px;
	font-size: 16px;
}

.btn-create {
	background-color: black;
	color: white;
	border: none;
	padding: 5px;
	-ms-flex-preferred-size: 100px;
	flex-basis: 100px;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
}

.content {
	margin-top: 40px;
}

.table-responsive {
	overflow-x: auto;
}

.logs {
	background-color: #373737;
	color: white;
	margin-top: 20px;
	border-collapse: collapse;
}

td,
th {
	border: 1px solid white;
	padding: 10px;
}

@media only screen and (max-width: 500px) {
	.app {
		padding: 20px;
	}
}

@media only screen and (max-width: 400px) {
	.form-create-url {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.url-field {
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
		margin-right: 0px;
		margin-bottom: 10px;
	}
	.btn-create {
		padding: 15px 10px;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}
