@font-face {
    font-family: BrushScript;
    src: url("brushscript.otf") format("opentype");
}

*{
  outline: none;
  font-family: Calibri;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

.stars, .twinkling, .clouds, #particles {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.stars {
  z-index: 0;
  background: #000 url("stars.png") repeat top center;
}

.twinkling {
  z-index: 1;
  background: transparent url("twinkling.png") repeat top center;
  animation: move-twink-back 200s linear infinite;
  opacity: 50%;
}

.clouds {
  z-index: 2;
  background: transparent url("clouds.png") repeat top center;
  animation: move-clouds-back 1000s linear infinite;
  opacity: 10%;
}

@keyframes move-twink-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000px 5000px;
  }
}
@keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10000px 0;
  }
}

.center-container{
    position: relative;
    height: 500px;
}
.absolute-center{
    width: 100%;
    height: fit-content;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    z-index: 100;
}

h1{
    color: white;
    font-family: BrushScript;
    font-size: 115pt;
    text-align: center;
}

.center-container>div>div{
  height: 200px;
  width: 525px;
  margin: auto;
  background: #ffffff0a;
  border-radius: 5px;
  box-shadow: 0px 0px 8px rgba(255,255,255,0.1);
  position: relative;
}

.buttons{
  display: flex;
  padding: 20px;
}

.buttons>button{
  transition: .25s;
  margin: auto;
  font-size: 30pt;
  padding: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.buttons>button.music-btn.music-btn-playing{
  color: #7caaff;
}

.buttons>button.vk-clor:hover{
  color: #4A76A8;
}
.buttons>button.yt-clor:hover{
  color: #ff0000;
}
.buttons>button.gh-clor:hover{
  color: #24292E;
}
.buttons>button.ds-clor:hover{
  color: #7289DA;
}
.buttons>button.music-btn:hover{
  color: #0059ff;
}

.music-name{
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 2;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 8px 12px;
  color: white;
  font-family: Calibri;
  font-size: 14pt;
}

.music-name.music-name-shown{
  opacity: 1;
  visibility: visible;
}

.email{
  position: absolute;
  bottom: 5px;
  text-align: center;
  width: 100%;
  color: #444444;
  font-family: Calibri;
}

.email>a{
  color: #aaaaaa;
}

.email>a:hover{
  color: #ffffff;
}

.links a::before,
.links a::after {
	display: inline-block;
	opacity: 0.5;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}

.links a::before {
	margin-right: 15px;
	content: '•';
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	transform: translateX(10px);
}

.links a::after {
	margin-left: 15px;
	content: '•';
	-webkit-transform: translateX(-10px);
	-moz-transform: translateX(-10px);
	transform: translateX(-10px);
}

.links a:hover::before,
.links a:hover::after,
.links a:focus::before,
.links a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

.links{
  color: white;
  font-family: Calibri;
  text-align: center;
  font-size: 16pt;
}

.links>a {
  color: #ffffff;
  font-weight: normal;
  width: calc(100% - 14px);
  display: block;
  padding: 7px;
}


@media screen and (max-width: 700px){
  .absolute-center{
      width: 100%;
  }
  h1{
    font-size: 60pt;
  }
  .center-container>div>div{
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: none;
  }
}