Screen Recorder Tool
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 500px;
width: 100%;
}
h1 {
color: #333;
margin-bottom: 20px;
}
.video-container {
border: 2px dashed #4CAF50;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
position: relative;
}
video {
width: 100%;
height: auto;
border-radius: 10px;
background-color: black;
}
.controls {
display: flex;
justify-content: space-between;
gap: 10px;
}
.btn {
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
color: white;
}
.start {
background-color: #4CAF50;
}
.start:hover {
background-color: #45a049;
}
.stop {
background-color: #f44336;
}
.stop:hover {
background-color: #e53935;
}
.download {
background-color: #2196F3;
display: inline-block;
text-decoration: none;
}
.download:hover {
background-color: #1e88e5;
}