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 {
    text-decoration: none;
    color: #D3595B;
}
nav a:hover {
    background-color: #D3595B;
    color: #3B16C9;	
}
/*プロフィールアイテム*/
.items{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:20px;
	margin: 20px 0;
}
.items img{
	max-width: 100%;
}
.item{
	background-color: #5337A5;
	border: 5px solid #92494B;
	border-bottom-right-radius: 20px;
}
.item p{
	padding:  0px 10px;
}