body {
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
  font-weight: 500;
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  text-decoration: none;
  color: #1679DD;
}

a:visited {
  text-decoration: none;
  color: #1679DD;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black; 
}

.modal {
  position: relative;
  background-color: #FFF;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  max-width: 70vw;
}

.modal::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
  width: 0;
  height: 0;
}

.modal__header {
  font-size: 20px;
  margin-bottom: 19px;
}

.modal__description {
  font-size: 17px;
  color: #454545;
  margin-bottom: 15px;
}

.modal__divider {
  border-bottom: 2px solid #ECECEC;
  margin-bottom: 20px;
}

.modal__btn {
  font-size: 20px;
}


.controls {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.controls__timeline {
  width: 100%;
  height: 4px;
}

.controls__btns {
  padding: 7px 12px 12px;
  width: calc(100% - 24px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.controls__time {
  color: #FFF;
  font-size: 20px;
}