html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
nav{
	justify-content: center;
}
@media (max-width: 1024px) {
    header nav ul {
        text-align: center;
    }
}

@media (max-width: 410px) {
    .logo h1 {
        font-size: 1.5em;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
    }

    nav ul li {
        margin: 9px 0;
		text-align: center;
    }

    form input, form textarea, form button {
        font-size: 0.9rem;
    }
}
.grid-item {
	transition: transform 1s;
  }
  
  .grid-item:hover {
	transform: scale(1.1);
  }
  .logo {
	transition: transform 1s;
  }
  
  .logo:hover {
	transform: scale(1.1);
  }
  .bg {   
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

ul {
	display: flex;
	flex-flow: row nowrap;
}
li{
	margin-left: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header .logo h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 10px;
    justify-content: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12;
}


main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

#map {
    height: 300px;
    width: 100%;
    border: 1px solid #ddd;
}


form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1rem;
}

form button {
    background-color: #333;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #f39c12;
}


.social-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.2em;
}

.social-links a:hover {
    color: #f39c12;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}
h1{
	font-size: large;
}
.grid-container {
	display: grid;
	grid-template-columns: auto auto auto;
	background-color: #ffffff;
	padding: 10px;
  }
  .grid-item {
	background-color: rgba(148, 148, 148, 0.553);
	border: 1px solid rgba(255, 255, 255, 0.8);
	padding: 20px;
	font-size: 30px;
	text-align: center;
	font-size: small;
  }

#song{
	font-size: small;
	text-decoration-color: #000000;
  }
#set{
	font-size: larger;
}
#none{
	background-color: #ffffff;
}