/*CSS for grid */
@import url('https://fonts.googleapis.com/css?family=Exo&display=swap');

:root {
	--txt: #22d;
	--num: #d22;
}
html {
	box-sizing:border-box;
    background: #101;
    font-size: 16px;
}
body {
	color: var(--txt);
        font-family: Exo;
	font-weight: 700;
	background: linear-gradient(150deg, #fffdff 30%, #faeafa, #efaaef, #e8e, #d2d);
  
}
#container {
	margin-left:50px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	height:96vh;
    
	
}
#page {
	
	  
}
button {
	margin-left: 30px;
	font-size: 1.5rem;
	text-transform: uppercase;
	background: #2d2;
	color:#525;
	border: 3px #959 solid;
	border-radius: 12px;
	box-shadow: 2px 2px 3px #555;
	padding: 4px 8px;
	transition: all 0.4s ease-in-out;
}
button:hover {
	
	transform: scale(1.05);
	color: #22d;
	background: #fffdfe;
	border-color: #22d;
	cursor: pointer;
}
code {
    
    line-height:3;
    padding: 20px;
    border-radius: 12px;
     background-color: #f7f7f7;
     color: #070707;
    box-shadow: 0 0 10px 5px #555;
}
h1 {
	font-size: 2.4rem;
	line-height:0.1;
}
p {
	font-size: 1.6rem;
	line-height: 1.6;
}
.num {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 8px #999;
	padding: 2px 10px;
	color: var(--num);
	font-size:2.5rem;
}
.num:hover {
	cursor: pointer;
	color: #2d2;
}
#heading {
	text-transform: uppercase;
}