@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 330px;
	height: 145px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/


/*ここから課題CSS*/
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

ul{
	display: flex;
	justify-content: space-around;
	width: 1000px;
	margin: 30px;
}

ul li a{
	display: block;
	height: 80px;
    line-height: 80px;
    font-size: 24px;
	text-align: center;
	cursor: pointer;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}

/*①色が変化するボタン*/
.btn1 {
    width: 250px;
	font-weight: bold;
    background-color: #00a200;
    color: #fff;
	border-radius: 20px;
}

.btn1:hover {
    background-color: #fff;
    border: 2px solid #00a200;
    color: #00a200;
}


 /*②グラデーションが切り替わるボタン*/
.btn2 {
	width: 350px;
	font-weight: bold;
    background: linear-gradient(90deg, rgba(255,112,30,1) 0%, rgba(255,191,48,1) 50%, rgba(255,77,48,1) 100%);
	background-size: 200% 100%;
    color: #feecd8;
	border-radius: 50px;
}

.btn2:hover {
  background-position: 100% 0;
}


/*③沈むボタン*/
.btn3 {
    width: 300px;
	font-weight: bold;
	letter-spacing: 0.1em;
    background-color: #75d3fa;
    color: #0518a3;
    margin-top: -10px;
    box-shadow: 0 10px 0 #30a1d0;
    border-radius: 30px;
}

.btn3:hover {
    margin-top: 0;
    box-shadow: 0 5px 0 #30a1d0;
}