* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
    z-index: 10;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.btn {
    display: block;
    border: white 2px solid;
    background-color: black;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    color: white;
    transition: color .2s, border-color .2s;
}

.btn:hover {
    border-color: #00a9a5;
    color: #00a9a5;
}

.spotify-container {
    width: 800px;
}

.ytplayer-container {
    position: relative;
    width: 800px;
    height: 450px;
}

.ytplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

ul {
    font-size: 18px;
    line-height: 1.5;
}

.galeria-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
    margin-bottom: 20px;
}

.galeria-container img {
    width: 100%;
    height: auto;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}

form input,
form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 20px;
    border: none;
    border-radius: 4px;
    background-color: #f4f4f4;
}

form button[type="submit"] {
    background-color: #080000;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

footer p {
    margin: 20px;
}

.dark-gray {
    background-color: #0e0e0e;
}