body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
	gap: 2rem;
}

.light {
	background-image: url("mount.jpg");
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
	margin: 0px 0px 0px 0px;
}

.dark {
	background-image: url("darkk.jpg");
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	width: 100%;
	margin: 0px 0px 0px 0px;
}

.dark-theme {
	color: #ffd24c;
}

@media screen and (max-width: 1000px) {
	#status {
		margin-left: auto;
		margin-right: auto;
	}

	#temperature {
		font-size: 3rem;
	}

	#feels-like {
		font-size: 1.5rem;
	}

	#forcast {
		column-gap: 10rem;
		color: #ffd24c;
	}

	#details {
		margin-top: 0px;
		margin-right: auto;
		margin-left: auto;
		justify-content: space-evenly;
	}

	#details table {
		margin-top: 20px;
	}

	#location span {
		font-size: 1.1rem;
	}

	#location {
		width: 100%;
		padding: 4px 4px 4px 4px;
		display: flex;
		justify-content: center;
	}
}

.container {
	padding: 0 1rem;
}
.switch {
	position: relative;
	width: 82px;
	height: 36px;
	min-width: 82px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 1px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(231, 226, 240);
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 24px;
	width: 24px;
	left: 6px;
	top: 5px;
	background-color: rgb(46, 18, 108);
	-webkit-transition: 0.4s;
	transition: 0.4s;
	color: #ffd24c;
}

input:checked + .slider {
	background-color: #346c81;
}

input:focus + .slider {
	box-shadow: 0 0 1px #4b6587;
}

input:checked + .slider:before {
	-webkit-transform: translateX(44px);
	-ms-transform: translateX(44px);
	transform: translateX(44px);
	background-color: rgb(231, 226, 240);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.details-row-heading {
	padding: 1rem 1.5rem;
	text-align: start;
}
