@charset "utf-8";

*{
	box-sizing:border-box;
}

h1, h2{
	font-family: halcom, sans-serif;
}

h1{
	font-size:2rem;
	color:#413B0F;
	text-align:center;
	margin:30px 0;
}

h2{
	font-size:1.5rem;
	font-style:italic;
	margin:10px 0;
}

p{
	font-family: source-sans-pro,sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size:1.1rem;
	line-height:2rem;
	
}

a:link, a:visited{
	color:#413B0F;
}

a:hover, a:active{
	color:black;
	text-decoration:none;
}

#intro {
	display:flex;
	flex-wrap:wrap;
}

#intro img{
	flex:1;
    width:100%;
	margin-bottom:20px;
    object-fit:contain;
}

#intro article{
	background-color:#F8F5E0;
	padding:20px;
	margin: 0 20px 20px;
	border-radius:10px;
}

#info{
	display:flex;
	flex-direction:column-reverse;
}

#info article{
	background-color:#B8DEEA;
	padding:20px;
}

#info article:first-of-type{
	margin:20px;
}


#buy div{
	background-color:#B8DEEA;
	margin:10px 0;
	text-align:center;
	padding:10px;
}

#buy div p{
	font-size:1.5rem;
	font-family: halcom, sans-serif;
}

#buy div p a{
	font-size:1rem;
}

#buyHeader{
	color:white;
	background-color:black;
	transform:rotate(5deg);
	padding:10px 40px 40px 40px;
	margin:40px 0;
	text-align:center;
}

#buyHeader h1{
	color:white;
	transform:rotate(-5deg);
}

#buyHeader p{
	transform:rotate(-5deg);
}

footer{
	border-top:1px solid #413B0F;
	margin:60px 10px;
	text-align:center;
}

footer h2{
	padding-top:20px;
}

footer ul{
	line-height:1.5rem;
	font-size:1.1rem;
}



@media only screen and (min-width: 660px) {
	
	p{
		font-size:1rem;
		line-height:1.8rem;
	}
	
	h2{
		font-size:1.4rem;
	}
	
	#intro{
		flex-wrap:nowrap;
		margin:0 20px;
	}
	
	#intro img{
		flex:60%;
	}
	
	#intro article{
		flex:30%;
		margin-right:0;
	}
	
	#info{
		flex-direction:row;
	}
	
	#info article{
		flex:1;
	}
	
	#info article:last-of-type{
		flex:2;
	}
	
	#info article:first-of-type{
		margin:0 20px 0 0;
	}
	
	#buy{
		display:flex;
		flex-wrap:wrap;
	}
	
	#buyHeader{
		flex:100%;
		margin-left: 20px;
		margin-right:20px;
	}
	
	#buy div{
		flex:1;
		margin:0 5px;
	}
	
	#buy div p{
		font-size:1.2rem;
	}
	
	footer{
		display:flex;
		flex-wrap:wrap;
		margin-left:0;
		margin-right:0;
		justify-content:space-around;
	}
	
	footer h1{
		flex:100%;
	}
	
	footer article{
		flex:1;
	}
	
	
}


@media only screen and (min-width: 1100px){
	
	#container{
		width:1100px;
		margin:auto;
	}
	
	#intro{
		margin:0;
        justify-content:space-between;
	}
	
	#intro img{
        margin:0;
	    flex:initial;
        width:725px;
	}
	
	#intro article{
        padding:30px;
        flex:initial;
        width:325px;
        margin:0;
	}
	
	#info {
        justify-content:space-between;
        margin-top:50px;
	}
    
    #info article{
        padding:30px;
        flex:initial;
        width:425px;
    }
    
    #info article:last-of-type{
        flex:initial;
        width:625px;
    }
    
    #buyHeader{
        margin-top:50px;
        margin-bottom:50px;
    }
    
    #buy{
        justify-content:space-between;
    }
    
    #buy div{
        flex:initial;
        width:525px;
    }
    
    footer{
        margin-top:50px;
    }
    
    audio{
        
    }

}



