@font-face {
  font-family: "LinkinPark";
  src: url("../font/LinkinPark.ttf");
}

@font-face {
  font-family: "ProximaNova";
  src: url("../font/ProximaNova_Regular.otf");
  font-weight: normal;
}

@font-face {
  font-family: "ProximaNova";
  src: url("../font/ProximaNova_Bold.otf");
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
}

body {
  background: url("../img/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}

body .bg {
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

h4 {
  font-size: 30px;
  margin-bottom: 28px;
  text-align: center;
  font-family: "LinkinPark";
}

a {
  color: white;
  text-decoration: none;
}

p {
  white-space: break-spaces;
}

nav {
  position: fixed;
  right: 0;
  height: 100%;
  background: #3b434b;
  background: #3b434bb6;
  font-family: "LinkinPark";
}

nav img {
  width: 300px;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 75vh;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
}

nav ul a {
  width: 100%;
  padding: 40px 0;
  color: white;
  text-align: center;
  font-size: 32px;
}

nav ul a:hover {
  background-color: #ffffff80;
}

main {
  margin-right: 300px;
  padding-bottom: 50px;
}

main h1 {
  padding: 40px;
  font-size: 60px;
  font-family: "LinkinPark";
  text-align: center;
}

main .home {
  font-family: "ProximaNova";
  font-size: 26px;
  margin-left: 50px;
}

main .home a {
  color: #2626c4;
}

main .home h2 {
  font-family: "LinkinPark";
}

main .home pre {
  font-size: 20px;
}

main .page-content, main .articles, main .article, main .album {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  width: 80%;
  margin: 0 auto;
  color: black;
  background-color: #5a5a5abe;
  font-family: "ProximaNova";
  border-top: 1px solid lightgray;
}

main .page-content:hover, main .articles:hover, main .article:hover, main .album:hover {
  background-color: #8d8d8d;
}

main .articles .content, main .article .content {
  width: 65%;
}

main .articles .content p, main .article .content p {
  padding: 20px;
}

main .articles .content .author, main .article .content .author {
  color: #080899;
  text-align: right;
}

main .articles .content .date, main .article .content .date {
  padding-right: 4px;
}

main .articles .content .category, main .article .content .category {
  color: #be1b1b;
  border-left: 2px solid gray;
  padding-left: 4px;
}

main .articles img, main .article img {
  height: 180px;
}

main .article .content h2 {
  font-size: 30px;
  margin-bottom: 28px;
}

main .article .content h3 {
  font-style: italic;
}

main .article .full {
  width: auto;
}

main .article .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .article img {
  height: 45vh;
}

main .albums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

main .albums .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  background-color: lightgray;
  margin: 16px;
  width: 340px;
  height: 160px;
  border-radius: 30px 0;
  font-family: "LinkinPark";
}

main .albums .item:hover {
  background-color: #a0a0a0;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}

main .albums .item img {
  height: 160px;
  width: 160px;
  border-radius: 30px 0;
}

main .albums .item p {
  color: black;
  text-align: center;
  width: 100%;
  font-size: 22px;
}

main .album .content {
  width: 100%;
}

main .album img {
  width: 300px;
}

.forms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.forms form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}

form h4 {
  margin-left: 80px;
  text-align: left;
  font-size: 24px;
  font-family: "ProximaNova";
}

form label {
  display: inline-block;
  font-family: "ProximaNova";
  font-size: 20px;
  margin-left: 20px;
}

form input,
form textarea,
form select {
  padding: 20px;
  width: 400px;
  color: black;
  font-size: 20px;
  border: 1px solid #aaaaaa;
  border-radius: 16px;
  outline: none;
  resize: none;
  margin: 10px 20px;
  vertical-align: middle;
}

form input[type="submit"] {
  cursor: pointer;
}

form option {
  color: black;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: calc(100% - 300px);
  height: 50px;
  line-height: 50px;
  color: black;
  background-color: #fff;
  text-align: center;
  font-family: "LinkinPark";
}

footer i {
  color: black;
}
