@charset "utf-8";
/* CSS Document */

body {
	padding:0;
	margin: 0;
	background-color: white;
	
}

h1,h2,h3,h4,a,b, .copyright {
	font-family: 'Inter', sans-serif;
	font-weight: bold;
	font-size: 700;
}

p{
	font-family: 'Inter', sans-serif;
	line-height: 150%;
}

.container {
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 2px 10px rgb(84, 84, 84);
    border: solid 1px black;
    padding: 0;
   
}

nav {
    background-color:#000000;
    border: #000000 1px solid;
}

.navi {
    display: flex;
    min-height: 90%;

    list-style: none;
    justify-content:center;
    align-items:center;
    gap: 5%;
    padding: 2% 5%;
}

.navi a{
	color: white;
	text-decoration: none;
}

.navi a:hover{
	color:lightgrey;
}

/*a:link, a:visited { 
    text-decoration: none;
    color: #ea4a8f;
}

a:hover, a:active {
    text-decoration: underline;
}
*/

.main{
	background:#F2F2F2;
	min-height: 450px;
	border-radius: 15px;
	padding: 2%;
	float:none;
	width: 80%;
	margin: 50px auto;
	
}

.main h1{
	margin-top:45px;
}

.mainimage {
	border-radius: 15px;
	display: block;
  	margin: auto;
  	width: 100%;
	object-fit: cover;
}

.row{
	padding: 10px;
	display: flex;
	gap: 2%;
	justify-content: center;
}

.column{
	min-width: 33%;
	background: white;
	min-height: 150px;
	padding: 2%;
	box-sizing: border-box;
	border-radius: 15px;
}

.gallery{
	object-fit: cover;
	width: 100%;
	height: 30%;
}

p a{
	color:hotpink;
	text-decoration: none;
}

.tips {
    min-width: 65%;
    min-height: 60px;
    box-sizing: border-box;
    padding: 1% 5% 2% 7%;
    border: solid 1px black;
    float: none; 
    width: 100%;
    margin: 10px auto;
    
}

.tips a{
	color:hotpink;
	text-decoration: none;
	line-height: 150%;
}

.footer {
    min-height: 100px;
    background:black;
}
 
.footerinfo {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2%;
    padding: 2%; 
	
}

.footerinfo a:link, .footerinfo a:visited {
    text-decoration: none;
    color: white;
	font-weight:400;
}

.footerinfo a:hover, .footerinfo a:active {
    color: lightgrey;
}

.copyright{
    list-style: none;
    text-align: center;
    justify-content: center;
    padding: 0 2%;
    padding-bottom: 3%;
	color: white;
	font-weight: lighter;
}

@media (max-width:992px) { 
    .row {
    display: block;
}