/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
    --bgColor: #000000;
    --accentColor: #00FF3E;
	--fireColor: #ff0000;
    --font: 'Karla', sans-serif;
}

body{
    background-color: var(--bgColor);
}

.video-container {
    position: relative;
    /* keeps the aspect ratio */
    padding-bottom: 56.25%; 
    /* fine tunes the video positioning */
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#userPhoto{
    width: 96px;
    height: 96px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#userName{
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}
#NormalText{
    color: black;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: left;
    text-decoration: none;
}
.fa {
  padding: 10px;
  display: block;
  text-align: center;
  font-size: 30px;
  width: 30px;
  height:30px;
  font-size: 1rem;
  font-weight: 800;

  text-decoration: none;
  margin: 15px 15px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #00FF3E;
  color: black;
}

.fa-twitter {
  background: #00FF3E;
  color: black;
}

.fa-instagram {
  background: #00FF3E;
  color: black;
}

#links{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link{
    display: block;
    background-color: var(--accentColor);
    color: black;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--accentColor) 2px;
}
.link_fire{
    display: block;
    background-color: var(--fireColor);
	color: black;
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
    border: solid var(--fireColor) 3px;
}

.link:hover{
    background-color: var(--bgColor);
    color: var(--accentColor);
}