/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto-v30-latin-regular.woff2') format('woff2'),
       url('/fonts/roboto-v30-latin-regular.ttf') format('truetype');
}


body{
  background-color: rgb(15, 15, 15);
  color: lightgray;
  font-family: Roboto;
}

pre{
  font-family: Roboto;
  line-height: 22px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

table{
  border-collapse: collapse;
}

th{
  border:  1px solid #dddddd;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: normal;
  background-color: rgb(80, 80, 80);;
}

td{
  border:  1px solid #dddddd;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}


.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

a:link {
  color: lightblue;
  text-decoration: underline;
}

a:visited { 
 text-decoration: underline; 
 color: lightblue; 
}

.menu {
	margin-left: 2%;
	margin-right: 2%;
	padding: 0.65em;
	background: rgba(54, 54, 54, 0.9);
	text-align: center;
	border: 1px solid #6e6e6e;
}

.flex-container {
  margin-top: 0%;
  margin-right: 10%;
  margin-left: 10%;
  display: flex;
}

.sidebar {
  box-sizing: border-box;
  padding: 6px;
  background-color: rgb(15, 15, 15);
  border: 1px solid rgb(70, 70, 70);
  border-left: none;
  width: 12%;
  text-align: center;

  font-size: 15px;
}

.content {
  padding: 0.65em;
	background: rgba(54, 54, 54, 0.9);
	text-align: center;
	border: 1px solid #6e6e6e;
  border-top: none;
  flex: 1; 
}

.menu a {
	margin-right: 0.6em;
	margin-left: 0.6em;
}

.post {
  margin-left: 5%;
  text-align: left;
}

/* Photography */

.column {
  float: left;
  width: 32%;
  border: 3px solid rgb(70, 70, 70);
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

@media (max-width: 800px) {
  .flex-container {
    flex-direction: column;
  }

  pre {
    white-space: pre-line;
  }

  .sidebar{
    display: none;
  }
}

/* Song of the week */
.metal, .electronic, .other, .rock{
  margin: 3px;
}

.metalselector, .electronicselector, .otherselector, .rockselector{
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px;
  border: #6e6e6e;
  border-style: solid;
}

.metalselector:hover{
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px;
  border: lightgray;
  border-style: solid;

  & ~ .rock{
    opacity: 20%;
  }
  & ~ .electronic{
    opacity: 20%;
  }
  & ~ .other{
    opacity: 20%;
  }
}

.rockselector:hover{
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px;
  border: lightgray;
  border-style: solid;

  & ~ .metal{
    opacity: 20%;
  }
  & ~ .electronic{
    opacity: 20%;
  }
  & ~ .other{
    opacity: 20%;
  }
}

.electronicselector:hover{
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px;
  border: lightgray;
  border-style: solid;

  & ~ .metal{
    opacity: 20%;
  }
  & ~ .rock{
    opacity: 20%;
  }
  & ~ .other{
    opacity: 20%;
  }
}

.otherselector:hover{
  margin-left: 5px;
  margin-right: 5px;
  padding: 3px;
  border: lightgray;
  border-style: solid;

  & ~ .metal{
    opacity: 20%;
  }
  & ~ .rock{
    opacity: 20%;
  }
  & ~ .electronic{
    opacity: 20%;
  }
}