@charset "UTF-8";

body{
	font-family:Arial, sans-serif;
	-webkit-font-smoothing:antialiased;
	background-image: url(../img/bg.jpg);
    background-position: center;
background-size:cover;
min-height: 100vh;
}

#wrapper{
	max-width:800px;
	margin:0 auto;
	
}

.bigbox {
display:flex;
flex-wrap: wrap;
   
}

h1{
	margin:50px 0;
	background: #3F5EFB;
background: radial-gradient(circle, rgba(63, 94, 251, 1) 23%, rgba(252, 70, 107, 1) 81%);;
    color: antiquewhite;
	font-size:4em;
    padding: 5px 20px;
}

button{
	font-size:1em;
	margin-right:10px;
	margin-bottom: 10px;
	display:block;
	color:#e0ffff;
    text-decoration-style: wavy;
	padding:10px 25px;
	background: #9d9bcf;
background: linear-gradient(90deg,rgba(157, 155, 207, 1) 0%, rgba(9, 9, 121, 1) 100%, rgba(0, 212, 255, 1) 86%);
	border-radius:20px;
	border:none;
	display:inline-block;
	cursor:pointer;
}

#buttons button:last-child{
	margin-right:0;
}

button:focus{
	outline:none;
}

button:hover{
    background:#717171;
}

#list{
	margin-right:-20px;
	padding-top:50px;
    
}

#list li{
	margin-right:20px;
	margin-bottom:25px;
	width:150px;
	height:150px;
	list-style-type:none;
	float:left;
    
}

