.btn {
  display: block;
  width: 100%;
  padding: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #023e8a;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  text-align: center;
  text-decoration: none;
}
.btn:hover {
  background-color: rgba(52, 225, 235, 0.2);
  box-shadow: 0 0 15px #34e1eb;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 0 5px #34e1eb;
}
.btn--start {
  border-color: #2ecc71;
  color: #2ecc71;
}
.btn--start:hover {
  background-color: rgba(46, 204, 113, 0.2);
  box-shadow: 0 0 15px #2ecc71;
}
.btn--stop {
  border-color: #e74c3c;
  color: #e74c3c;
}
.btn--stop:hover {
  background-color: rgba(231, 76, 60, 0.2);
  box-shadow: 0 0 15px #f3220b;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #2c3e50;
  font-family: "Montserrat", sans-serif
}

.interface-container {
  width: 540px;
  height: 960px;
  background-color: #050a14;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  border: 4px solid #4b70dd;
  display: flex;
  flex-direction: column;
}
.interface-container::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  pointer-events: none;
  z-index: 0;
}

.header {
  padding: 2rem;
  background-color: rgba(75, 112, 221, 0.1);
  border-bottom: 2px solid #4b70dd;
  z-index: 1;
}
.header__vehicle-name {
  margin: 0;
  color: #0077b6;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.header__location {
  margin: 5px 0 0 0;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(75, 112, 221, 0.5);
}

.control-panel {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  z-index: 1;
}
.control-panel__status {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(52, 225, 235, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.control-panel__status h3 {
  margin-top: 0;
  color: #023e8a;
  font-size: 1rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(52, 225, 235, 0.3);
  padding-bottom: 0.5rem;
}
.control-panel__flex {
  display:flex ;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.control-panel__data-point {
  color: #ffffff;
}
.control-panel__data-point label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.control-panel__data-point span {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}
.control-panel__actions {
  margin-top: auto;
  padding-bottom: 2rem;
}

.image-container {
  display: flex;
  margin-bottom: 0.7rem;
  justify-content: center;
  align-items: center;
}

img{
  width: 450px;
  height: 250px;
}