body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#search-input {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left:30px ;
}

#search-button {
    border: none;
    border-radius: 10px;
    color: black;
    border-radius: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-left: 15px;
}

#search-button:hover { 
    border: #555 solid 5px;
    width: 25px;
    height: 25px;
}

#results {
    width: 100%;
    max-width: 600px;
}

.song {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.song img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 4px;
}

.song-details {
    display: flex;
    flex-direction: column;
}

.song-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.song-artist {
    font-size: 14px;
    color: #555;
}

.watch-link {
    margin-top: 10px;
    text-decoration: none;
    color: #1a73e8;
}

.watch-link:hover {
    text-decoration: underline;
    text-decoration: bold;
}

link{
    color: #1a73e8;
}

link:hover{
    color: red;
}

a{
    color: blue;
}

a:hover{
    color: red;
}