.card-container {
	width: 100%;
	height: calc(100% - 100px);
	display: flex;
	justify-content: space-around;
}

.card {
	background-color: #1e1e1e;
	width: 100%;
	margin: 20px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	border-radius: 10px;
	transition: all 400ms;
}

.card-small-container {
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
    width:100%;
    min-height:50%;
    margin-bottom:auto;
    margin-top:auto;
}

.top-card-container {
	width: 100%;
}

.top-card-container h1 {
    margin:0px;
}

.top-card-container p {
    font-size:15px;
    color:#909090;
    margin:0px;
}

.restart {
	background-color: transparent;
	outline: none;
	border: none;
	color: #909090;
	font-size: 25px;
	font-weight: bold;
	font-family: Lucida Sans Unicode;
	width: min-content;
    align-self:self-end;
	transition: all 0.7s;
}

.restart:hover {
	transform: rotate(-359deg);
}

.counter {
	font-size: 94px;
	margin: 0px;
	margin-left: 15px;
	color: #909090;
}

.sum {
	font-size: 50px;
	text-align: center;
	height: auto;
	width: 100%;
}

.sum p {
	padding: 0px;
	margin: 0px;
	font-size: 64px;
}

.sum input {
	max-width: 500px;
	width: 100%;
	height: 50px;

	margin: 0px;

	border-radius: 50px;
	border-width: 3px;
	border-color: #00d9ff;
	background-color: #191f1e;
	outline: none;

	overflow: hidden;

	font-family: "Roboto", sans-serif;
	text-align: center;

	outline: none;

	text-align: center;

	font-size: 20px;

	color: white;

	transition: all 500ms;
}

.set-values {
	margin: 0px;
	font-size: 50px;
}

.difficulty {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}

.difficulty p {
	font-size: 20px;
}

.bottom {
	margin-top: 20px;
}

.slider {
	-webkit-appearance: none;
	max-width: 100%;
	width: 325px;
	height: 25px;
	background: rgba(0, 0, 0, 0);
	outline: none;
	opacity: 1;
	-webkit-transition: 0.2s;
	transition: all 0.2s;
	margin-left: 25px;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	background: white;
	border-radius: 5px;
	border-width: 0px;
	box-shadow: 0px 0px 10px #000;
	transform: translateY(-6px) rotate(45deg);
	transition: all 300ms;
	cursor: pointer;
}

.slider::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-width: 0px;
	background: white;
	transition: all 300ms;
	cursor: pointer;
}

.slider::-webkit-slider-thumb:hover {
	transform: translateY(-6px) rotate(0deg);
}
.slider::-moz-range-thumb:hover {
	transform: translateY(-6px) rotate(0deg);
}

.slider::-webkit-slider-runnable-track {
	background: linear-gradient(to right, #00d9ff, #fbd40b, #e33936);
	height: 7px;
	border-radius: 25px;
	-webkit-appearance: none;
	appearance: none;
}

.slider:hover {
	width: 400px;
}

.set-timer {
	display: flex;
	flex-direction: column;
}

.set-timer button {
	width: 100px;
	background-color: transparent;
	text-align: center;
	color: #909090;
	outline: none;
	border: none;
	margin: auto;
	font-size: 36px;
	transition: all 200ms;
}

.set-timer input {
	width: 200px;
	text-align: center;
	margin: auto;
	background-color: transparent;
	outline: none;
	border: none;
	color: white;
	font-size: 45px;
}

.set-timer button:hover {
	color: grey;
	font-size: 30px;
}

.reset-button {
	align-items: center;
	appearance: none;
	background-color: transparent;
	border-radius: 24px;
	border-style: none;
	color: #909090;
	height: 48px;
	width: 100px;
	font-size: 20px;
	font-weight: 550;
	transition: all 200ms;
    align-self:self-end;
}

.reset-button:hover {

}

@media screen and (max-width: 1100px) {
	.card-container {
		flex-direction: column;
		height: auto;
	}

	.card {
		width: auto;
		min-height: 70vh;
		max-height: 100vh;
	}

    .card-small-container {
        min-height:800px;
    }

	.counter {
		font-size: 150px;
	}

	.restart {
		font-size: 80px;
	}

	.sum p {
		font-size: 100px;
	}

	.sum input {
		font-size: 45px;
		height: 75px;
		margin-top: 15px;
	}

	.set-values {
		font-size: 75px;
	}

	.set-timer button {
		font-size: 50px;
	}

	.set-timer input {
		font-size: 70px;
	}

	.difficulty p {
		font-size: 40px;
	}

	.reset-button {
		font-size: 35px;
		height: auto;
		width: auto;
		border-radius: 50px;
		padding: 15px;
		padding-left: 30px;
		padding-right: 30px;
	}
}
