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

* {
    box-sizing: border-box;
}

body {
    font-family: 'Tilt Warp', sans-serif;
    background: #1a1a1d;
    color: #EEEDEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100vh;
    margin: 0;

}

h1 {
    color: #EEEDEF;
}

.screen {
    cursor: pointer;
    width: 60%;
    background-color: #000 !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.control {
    background-color: #333;
    color: #EEEDEF;
    border-radius: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
}

.control .btn {
    border: 0;
    background: transparent;
    
}

.control .fa-play {
    color: #2C8E4F;
}

.control .fa-stop {
    color: #c72437;
}

.control .timestamp {
    color: #EEEDEF;
    font-size: bold;
    margin-left: 10px;
}

.btn :focus{
    outline: 0;
}

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