* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.85);
}

h2 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

header {
    background-size: cover;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}


footer {
    text-align: center;
    padding: 0 20px 20px 20px;
    background-color: #333;
    color: white;
}

footer p:first-child {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer svg {
    vertical-align: middle;
    margin-right: 5px;
}


form input,
form textarea,
form button {
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
}

nav a,
form button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
nav ul {
    display: flex;
    justify-content:
        center;
    list-style: none;
    padding: 10px;
    background-color: #333;
    margin: 0;
    flex-direction: row;
    gap: 5px;
}
nav li {
    margin: 0 15px;
}
nav a {
    color: white;
    text-decoration: none;
}
nav a:hover {
    text-decoration: underline;
}

p {
    padding: 20px;
    color: #333;
    line-height: 1.6;
    margin: 10px 0;
}

#contact {
    padding: 40px;
    background-color: #f9f9f9;
}

.spotify {
    text-align: center;
    margin: 20px 0;
}

.spotify iframe {
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    height: 640px;
}

.rt>div:first-child {
    flex: 1;
    text-align: center;
}

.rt>div:first-child img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.rt>div:last-child {
    flex: 1;
    padding: 20px;
}

.rt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    flex-direction: column;
}

.rt>div {
    width: 100%;
}

.lt>div:last-child {
    flex: 1;
    text-align: center;
}

.lt>div:last-child img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.lt>div:first-child {
    flex: 1;
    padding: 20px;
}

.lt {
    display: flex;
    align-items:
        center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    flex-direction: column;
}

.lt>div {
    width: 100%;
}

.contact-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-note a {
    color: #856404;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (min-width: 768px) {
   .rt {
        flex-direction: row;
    }
    .lt {
        flex-direction: row;
    }
    .lt>div:first-child {
        text-align: right;
    }
 }
