*{
    margin: 0;
    padding: 0;
}
body{
    background-image: url(../img/image\ \(1\).png);
    background-position: center;
    background-repeat: none;
    color: rgba(0, 255, 64, 1);
    text-decoration: none;
}
.body{
    margin:auto;
}
.wrapper{
    padding: 1rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: rgba(1, 2, 3, 1);
    margin: 2rem;
    border-radius: 1.5rem;
}
.contents{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.one, .two, .three ,.inspo{
    margin: 1rem;
    border-radius: .7rem;
    text-align: center;
    display: flex;
    align-items: center;
}
.one, .three, .inspo{
    width: 12rem;
    background-color: rgba(1, 2, 3, 1);
    padding: 1rem;
}
.inspo, .links, .favo{
    width: 12rem;
    text-align: center;
}
.songlist, .choosesong, .mediaplayer, .inspo, .links, .favo{
    display: flex;
    flex-direction: column;
    background-color: rgba(1, 2, 3, 1);
    padding: 2rem;
    border-radius: 2rem;
}
.inspo p, .favo p{
    margin-top: 1rem;
}
nav{
    display: flex;
    justify-content: center;
}
a{
    transition: .2s ease;
    padding: .8rem;
    color: rgba(0, 255, 64, 1);
    margin: 1rem;
    text-decoration: none;
}
header a img{
    width: 5rem;
    height: 5rem;
}
nav{
    border: rgba(0, 255, 64, 1) double 2px;
}
nav a{
    margin: .2rem;
    padding: .6rem;
}
a:hover {
    transform: scale(1.2);
}
.links img{
    margin: -1.2rem;
}
img{
    transition: .2s ease;
}
.two img{
    border-radius: 2rem;
    object-fit: cover;
    width: 20rem;
    height: 13rem;
}
header img{
    object-fit: cover;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    transition: .2s ease;
    padding: 1rem;
}
img:hover{
    transform: scale(1.2);
}
@media screen and (max-width:800px) {
    .wrapper, .contents{
        display: flex;
        flex-direction: column;
    }
}
.mediaplayer, .songlist, .choosesong{
    margin: 0rem 2rem;
}
.choosesong{
    width: 10rem;
}
.mediaplayer, .songlist{
    width: 15rem;

}

.choosesong button {
    background-color: #333333; 
    color:rgba(0, 255, 64, 1); 
    border: 2px solid rgba(0, 255, 64, 1); 
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
}

.choosesong button:hover {
    background-color: #444444; 
    color: #ffffff; 
    transform: scale(1.2);
}

.choosesong button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 64, 1);
} 

.mediaplayer iframe:hover{
    transform: scale(1.1)
}