/*Elements*/

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  text-align: left;
  background-image: url('img/bg01.jpeg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  color: #000000;
}

body.button {
  background: rgba(105, 105, 105, 0.3);
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  display: flex;
  text-decoration: none;
  font-weight: bold;
  background: rgba(200, 255, 220, 0.3);
  border-radius: 8px;
  padding: 0.25em 1em;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  vertical-align: middle;
  margin-left: 32px;
  margin-right: 32px;
  color: #111;
}

h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 20px;
  vertical-align: middle;
  margin-left: 64px;
  margin-right: 48px;
  color: #111;
}

h2:after {
  content: ' ';
  display: block;
  border: 2px solid #888888;
  border-radius: 4px;
}

h3 {
	font-size:18px;
	color:black;
	margin-left:50px;
}

hr {
  margin-left: 35px;
  margin-right: 35px;
  border-radius: 4px;
  border: 2px solid #888888;
}

blockquote {
  background: rgba(204, 204, 204, 0.4);
  width: 50%;
  margin: auto;
  padding: 15px 15px 15px 30px;
  font-family: "Courier New", "Lucida Console", monospace;
  text-align: justify;
  quotes: "&#171" "&#187" "&#39" "&#39";
  border-left: 15px solid green;
  -moz-box-shadow: 2px 10px 15px #ccc;
  -webkit-box-shadow: 2px 10px 15px #ccc;
  box-shadow: 2px 10px 15px #ccc;
}

cite {
  font-family: Helvetica, Arial, sans-serif;
  background: rgba(204, 204, 204, 0.4);
  font-style: italic;
  border-left: 3px solid green;
}

.iframe_cont {
  position: relative;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  padding-top: 56.25%;
}

.resp-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.featured-container {
    display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1em;
    width: 100%;
    margin: 1em auto;
}

.featured {
    display: grid;
    grid-template-columns: 128px 1fr;
    background: rgb(50, 115, 69);
    border: 5px solid #63c64d;
    border-radius: 4px;
    overflow: hidden;
}

.featured-img {
    width: 128px;
    aspect-ratio: 1 / 1;
	align-self: center;
	padding: 6px;
}

.featured-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-txt {
    min-width: 0;
    padding: 0.75em;
}

.featured-txt h2 {
    margin: 0 0 0.5em 0;
    font-size: 18px;
}

.featured-txt h2:after {
    display: none;
}

.featured-txt p {
    margin: 0;
}

.featured-txt .play_div {
    display: inline-flex;
}

@media (max-width: 600px) {
    .featured-container {
        grid-template-columns: 1fr;
    }

    .featured {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .featured-img {
        width: 100%;
        max-width: 100px;
        justify-self: center;
        align-self: center;
    }

    .featured-txt {
        width: 100%;
    }
}

.form-field {
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    font-family: inherit;
    font-size: inherit;
}

.form-field:focus {
    outline: 2px solid #63c64d;
    outline-offset: 2px;
}

/*table.featured {
  width: 32%;
  display: inline-table;
  background: rgb(50, 115, 69);
  border: 5px solid #63c64d;
  border-radius: 4px;
}

td.featured-img {
  width: 143px;
  height: 100%;
  border: 3px solid #63c64d;
  border-radius: 4px;
  padding: 7px
}

td.featured-txt {
  height: 100%;
  border: 3px solid #63c64d;
  border-radius: 4px;
  padding: 7px
}

/*Classes*/

a.portfolio:link,
a.portfolio:visited {
  color: rgb(0, 60, 0);
  background: rgba(220, 255, 220, 0.7);
  border-radius: 8px;
  padding: 0.25em 1em;
  transition: background 0.2s ease, transform 0.1s ease;
}

a.portfolio:hover,
a.portfolio:active {
  background: rgba(150, 255, 180, 0.9);
	color: rgb(0, 40, 0);
}

a.menu:link,
a.menu:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0.25em 1em;
}

a.menu:hover,
a.menu:active {
  transform: scale(1.05);
}

a.play:link,
a.play:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0.25em 1em;
}

a.play:hover,
a.play:active {
  transform: scale(1.05);
}

.play_div {
  padding: 0.25em 1em;
  background: rgba(218, 236, 173, 0.7);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 20px;
  transition: background 0.2s ease;
}

.play_div:hover {
  background: rgba(255, 231, 98, 0.8);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 15px;
}

a.press_play:link,
a.press_play:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0.25em 1em;
  vertical-align: middle;
}

a.press_play:hover,
a.press_play:active {
  transform: scale(1.05);
  vertical-align: middle;
}

.press_play_div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 1em;
  background: rgba(245, 214, 137, 0.7);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 20px;
  transition: background 0.2s ease;
}

.press_play_div:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 231, 98, 0.8);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 15px;
}

/*IDs*/

#main_cont {
  width: 80%;
  /*min-width: 80%;*/
  margin: auto auto 8px auto;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  padding: 32px 8px 8px 8px;
  background-clip: padding-box;
  background: rgb(144, 238, 144, 0.0);
  border-style: solid;
  border-width: 0px 15px 0px 15px;
  border-color: rgba(144, 238, 144, 0.5);
  border-radius: 50px 50px 50px 50px;
}

#logo {
  margin-left: 64px;
  margin-bottom: 12px;
  position: static;
  /*height: auto;
  width: auto;
  max-width: 100%;*/
}

#logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

#menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  position: sticky;
  top: 0;
  width: 95%;
  height: 2em;
  margin: 0 auto 8px auto;
  left: 0; right: 0;
  background: rgba(200, 255, 240, 0.7);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 15px;
  z-index: 100;
}

.menu_item {
  padding: 0.25em 1em;
  background: rgba(200, 255, 240, 0.7);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 20px;
  transition: background 0.2s ease;
}

.menu_item:hover {
  background: rgba(255, 200, 200, 0.8);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgb(100, 200, 100);
  border-radius: 15px;
}

#body_cont {
  margin: auto;
  padding: 1.5em;
  width: 95%;
  /*min-width: 100%;*/
  box-sizing: border-box;
  min-height: 500px;
  background: rgba(240, 255, 200, 0.8);
  border-style: solid;
  border-width: 0 10px;
  border-color: rgba(144, 238, 144, 0.5);
  border-radius: 25px;
}

#footer {
  width: 80%;
  /*min-width: 600px;*/
  margin: auto;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  padding: 0.3em;
  min-height: 2em;
  background: rgba(200, 255, 240, 0.7);
  border-style: solid;
  border-width: 0 5px;
  border-color: rgba(100, 200, 100, 0.5);
  border-radius: 15px;
}

@media (max-width: 600px) {

  #main_cont {
    width: 95%;
    min-width: 0;
    padding: 16px 4px 4px 4px;
    border-width: 0 8px;
    border-radius: 30px;
  }

  #logo {
    margin-left: 0px;
    /*width: auto;
	max-width: 100%;
    height: auto;*/
	margin-bottom: 12px;
  }

  #menu {
    width: 95%;
    height: auto;
    min-height: 2em;
    flex-wrap: wrap;
    gap: 0.25em;
  }

  #body_cont {
    width: 100%;
    min-width: 0;
    padding: 1em;
    border-width: 0 5px;
    border-radius: 20px;
  }

  #footer {
    width: 95%;
    min-width: 0;
  }

  h1 {
    margin-left: 12px;
    margin-right: 12px;
  }

  h2 {
    margin-left: 16px;
    margin-right: 12px;
  }

  h3 {
    margin-left: 20px;
  }

  hr {
    margin-left: 15px;
    margin-right: 15px;
  }

  blockquote {
    width: 92%;
    box-sizing: border-box;
	font-size: 0.9em;
	padding: 12px 12px 12px 20px;
	border-left-width: 8px;
	text-align: left;
  }

  table.featured {
    width: 90%;
    display: table;
    margin: 0 auto;
  }
}

* {
  box-sizing: border-box;
}