@charset "utf-8";
footer {
    background-color: #14ADE9;
}
header ,main,footer{
    margin: 0 auto;
    width: 1000px;
    text-align: center;
}
nav ul {
    padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}
nav a:hover {
    background-color: #5FDE18;
}
nav a {
    text-decoration: none;
    color: #F01287;
    line-height: 1.8;
}
ol li {
    margin: auto;
    width: 400px;
    text-align: left;
}
body {
    background-image: url(img/gomi.jpg);
}
/*プロフィールアイテム*/
.items{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 20px 0;
}
.items img{
	max-width: 100%;
}
.item{
	background-color: rgba(125,192,255,1.00);
	border: 5px solid rgba(68,133,182,1.00);
	border-radius: 20px;
}
.item p{
	padding: 0px 10px;
}
