
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: 'Pacifico', cursive;
    color: #fff;
    background: url('Mike From Nashville Logo Idea.png') no-repeat center center;
    background-size: cover;
    text-shadow: 2px 2px 4px #000;
}
.container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    animation: colorchange 5s infinite;
}
@keyframes colorchange {
    0% { color: #ff0000; }
    25% { color: #ff9900; }
    50% { color: #ffff00; }
    75% { color: #00ff00; }
    100% { color: #ff0000; }
}
.youtube-link {
    display: inline-block;
    margin-top: 20px;
    width: 200px;
    height: 150px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/b/b8/YouTube_Logo_2017.svg') no-repeat center center;
    background-size: contain;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
.youtube-link:hover {
    animation: none;
}
