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

*{
    box-sizing: border-box;
}


body {
     font-family: 'Qahiri', sans-serif;
     background-color:cornflowerblue;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     max-height: 100vh;
     margin: 0;

}

h1 {
    color: cornsilk;
}
.screen {
    cursor: pointer;
    width: 60%;
    background-color: black;
    border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

.controls {
    background-color: darkgray;
    color: white;
    display: flex;
    justify-content: center;
align-items: center;

width: 60%;
padding: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}

.controls .btn {
border: 0;
background: transparent;
cursor: pointer;
color: white;
}

.controls .fa-google-play{
    color: rgb(0, 53, 53);
}

.controls .fa-pause{
    color: rgb(0, 53, 53);

}

.controls .timestamp{
    color: rgb(33, 51, 70);
    font-weight: bold;
    margin-left: 10px;
}

.controls .fa-stop-circle{
    color: rgb(71, 8, 8);
    margin-right: 10px;
}

@media(max-width: 800px)
{
    .screen, .controls {
        width: 90%;
    }
}



