@charset "UTF-8";
/*css comment*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Headings font styling */
h1, h2, h3 {
    font-family: "Alegreya", Helvetica, serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

header {
    background-color: #5e60ce;
    color: white;
    padding: 20px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:visited {
    text-decoration:none;
    color:#ffff;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
	padding: 6px 10px;
	border-radius: 4px;
	text-decoration: none;
}

section {
    padding: 40px;
    text-align: center;
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

.hero {
    background-color: #e0e7ff;
    padding: 60px 20px;
}

.artist {
    margin: 20px auto;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.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%;
}

.artwork {
    background: white;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.external-links {
    list-style: none;
    padding: 0;
}

.external-links li {
    margin: 15px 0;
}

.external-links a {
    text-decoration: none;
    color: #5e60ce;
    font-weight: bold;
}

.external-links a:hover {
    text-decoration: underline;
}

footer {
    background-color: #5e60ce;
    color: white;
    padding: 20px 40px;
    margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer-logo {
	height: 40px;
	width: auto;
}

.footer-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.4;
}

.footer-text p {
    margin: 2px 0;
}