body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
padding:0;
padding-top:20rem ;
margin:0;
gap:2rem;
background-color: rgb(4, 6, 25);
}

.streamingapp{
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
padding:0;
margin:0;
gap:2rem;
background-color: rgb(4, 6, 25);
list-style: none;
}

.streamingapp__btn{
display: flex;
align-items: center;
justify-content: center;
border: solid 0.1rem white;
padding: 1rem;
color: white;
min-width: 5rem;

}

.streamingapp__link{
text-decoration:none;
color: white;
}

.streamingapp__btn:hover{
background-color: rgb(16, 19, 50); ;
}

@media(max-width:64rem){
.streamingapp{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

}