*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html,
body {
  margin: 0;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden; /* in case navigation menu encouters browser issues */
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  height: 100%;
}
.container {
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media screen and (min-width: 680px) {
  .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}

footer {
  margin-top: auto;
  padding-bottom: 2em;
}

.bg-img {
  /* The image used */
  background-image: url("/images/kevJams.jpg");
  min-height: 80vh;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Needed to position the navbar */
  position: relative;
}
.bgv-img {
  /* The image used */
  background-image: url("/images/kevJams.jpg");
  min-height: 150px;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Needed to position the navbar */
  position: relative;
}

.bga-img {
  /* The image used */
  background-image: url("/images/kevJams.jpg");
  min-height: 150px;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Needed to position the navbar */
  position: relative;
  z-index: 1000;
}

/* Position the navbar container inside the image */
.nav_container {
  z-index: 2000;
  position: absolute;
  right: 15%;
  margin: auto;
  display: flex;
  justify-content: center;
  background-color: #023546;
}
@media screen and (min-width: 700px) {
  .nav_container {
    right: 30%;
  }
}
/* The navbar */
.topnav {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

/* Navbar links */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
nav ul li a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

iframe {
  margin: 1em;
  padding: 1rem
}
.video {
  display: block;
  height: 340px;
  width: 400px;
  margin: 20px auto 20px auto;

}

.player {
  padding: 0px;
  margin: auto;
  font-family: "Dosis", sans-serif;
  position: relative;
  width: 50vmax;
  height: 50vmax;
  border: 1px solid transparent;
  border-radius: 0px;
}

.record {
  display: flex;
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 70%;
  height: 70%;
  background-color: transparent;
  background: linear-gradient(45deg, #333, black, #555, black, #333);
  border-radius: 100%;
  -webkit-transform: rotate(0) translateZ(0);
  transform: rotate(0) translateZ(0);
}
.record:before,
.record:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0);
  background: repeating-radial-gradient(
    circle at center,
    black 3px,
    transparent 6px
  );
  border-radius: 100%;
}

.record .label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 35%;
  height: 35%;
  padding: 1px;
  background-position: center top;
  background-color: rgb(237, 197, 144);
  background-size: cover;
  text-align: center;
  border-radius: 100%;
  z-index: 2;
}
.record .label:before,
.record .label:after {
  content: "";
  margin-top: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  z-index: -1;
}

.record:after {
  width: 45%;
  margin: auto;
  height: 45%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

path {
  fill: transparent;
}

text {
  fill: #482d04;
  font-family: "Luckiest Guy", cursive;
  font-size: 33px;
}

.mPlayer {
  position: absolute;
  top: 5em;
  right: 10em;
  bottom: 0;
  left: 0;
  margin: auto;
  /* width: 25%; */
  height: 25%;
  padding: 1px;
  background-position: center bottom;
  text-align: center;
  border-radius: 100%;
  z-index: 4;
}

@media screen and (min-width: 1200px) {
  .player {
    margin-top: -80px;
  }
  .mPlayer {
    width: 25%;
  }
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

.bottom-right {
  position: absolute;
  top: 45%;
  right: 5em;
  color: white;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 1427px) {
  .bottom-right {
    top: 60%;
    right: 1em;
    margin-bottom: 1em;
  }
}
/* iphone design */
@media screen and (max-width: 440px) {
  .bottom-right {
    top: 45%;
    right: 1em;
    margin-bottom: 1em;
  }
}
/* iphone design */
@media screen and (max-width: 440px) {
  h1 {
    margin-top: 2em;
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
}
/* iphone design */
@media screen and (max-width: 300px) {
  h1 {
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
}
.audio_footer {
  margin-top: -100px;
}
footer {
  text-align: center;
}
