@import url('https://fonts.googleapis.com/css2?family=Cause:wght@100..900&display=swap');
body, main, details, .content{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	row-gap: 10px;
}
button{
	height: 100px;
	width: 1;
	background: blue;
	border: none;
	border-radius: 1000px;
	font-size: 1.25rem;
	font-weight: bold;
	color: white;
	text-shadow: 0 0 10px white;
	box-shadow: 0 0 10px lightblue;
	transition: all 0.2s linear;
}
button:active{
	box-shadow: none;
	text-shadow: none;
}
button:hover{
	box-shadow: 0 0 15px lightblue;
	text-shadow: 0 0 15px white;
}
body{
	min-height: 100dvh;
	min-width: 500dvw;
	background: url("youtube.ico");
	background-position: center;
	background-size: cover
}
h1, ::placeholder{
	font-style: italic;
}
input, ::placeholder{
	text-align: center;
}
footer p{
	font-family: "Cause", cursive;
	font-weight: bold;
	color: white;
}
section p{
	font-weight: bold;
	color: blue;
	margin-left: 10px;
}
small{
	font-style: italic;
}
canvas{
	border: solid;
	background: white;
}
div{
	display: flex;
	justify-content: center;
}
hr{
	margin: 13px 0;
}
img{
	height: 20px;
}