@charset "UTF-8";
/*css comment*/

body {
    margin: 0;
    font-family: "Lora", sans-serif;
    color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1, h2, h3 {
    font-family: "Lora", Helvetica, serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-family: "Lora", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

section {
    padding: 40px;
    text-align: center;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
	margin-bottom: 10px;
}

.hero {
    padding: 5px 10px;
}

.artist {
    margin: 20px auto;
    max-width: 600px;
    padding: 20px;
   border: 2px solid #000;
  border-radius: 5px;
  
}

.artist-icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.map {
    margin-top: 25px;
}

.gallery {
    width: 1200px;
    background-color: #fff5fa;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 3%;
}

.art {
    padding: 40px 20px;
    border-radius: 8px;

}

.external-links {
    list-style: none;
    padding: 0;
}

.external-links li {
    margin: 15px 0;
}

.external-links a {
    text-decoration: none;
    color: #a0d152;
    font-weight: bold;
	 margin: 15px 0;
}

.external-links a:hover {
    text-decoration: underline;
}

footer {
    background-color: #fff;
    color: #000;
    padding: 20px 40px;
    margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer-logo {
	height: 40px;
	width: auto;
}
.hero-logo {
	height: 210px;
	width: auto;
}

.footer-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.4;
}

.footer-text p {
    margin: 2px 0;
}