* {
  margin: 0; padding: 0;
}

@font-face {
  font-family: "IrishUncialfabeta-Bold";
  src: url("IrishUncialfabeta-Bold.ttf") format("truetype");
}

html {
  height: 100%;
}

body {
  /* background-color: #1e2227; */
  background-color: #671578;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;

  height: 100%;

  font-family: Arial, sans-serif;
  color: #e9e9e9;
}

#play-button {
  width: 150px;
  height: 150px;
  color: #671578;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

h1 {
  margin-bottom: 40px;
  font-size: 40px;
  text-align: center;
  font-family: "IrishUncialfabeta-Bold", sans-serif;
  color: #f6d105;
}

#tempo {
  font-size: 40px;
}

.bpm {
  font-size: 12px;
  text-align: center;
}

.tune-types {
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
}

.beats {
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
}

.tempo-controls {
  margin-top: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
}

.tempo-container {
  margin: 0 15px;
}

.beat {
  padding: 6px;
  border: none;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin: 5px;
  background-color: #e9e9e9;
}

.active {
  background-color: #f6d105;
}

button {
  padding: 6px;
  border: none;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin: 5px;
  background-color: #f6d105;
  color: black;
  cursor: pointer;
}

button:focus {
  outline: none;
}

.created-by {
  margin-top: 40px;
}

a {
  color: #e9e9e9;
}

a:hover {
  color: #356161;
}

.play {
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 50px solid #671578;
  margin-left: 15px;
}

.pause {
  width: 15px;
  height: 60px;
  border: none;
  border-left: 15px solid #671578;
  border-right: 15px solid #671578;
}