@import url("https://fonts.googleapis.com/css?family=Montserrat");

* {
  box-sizing: border-box
}

body,
html {
  height: 98%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

/********************/

.floating {
  position: fixed;
  right: 24px;
  transition: all 500ms ease 0s;
  z-index: 7;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
  align-items: flex-end;
}

.floating__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  user-select: none;
  pointer-events: all;
  border: 0;
  cursor: pointer;
}

.floating__btn:first-child {
  margin-bottom: 1rem;
  background-color: #E53935;
}

.floating__btn svg {
  display: block;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.floating__btn #install_app {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
  -webkit-transform-origin: center;
  transform-origin: center;
  fill: white;
}

/***********************/

#header {
  color: #252525;
}

#title {
  font-size: 2rem;
  line-height: 1.67;
  letter-spacing: .7px;
  text-align: center;
  user-select: none;
}

.tablink {
  background-color: #555;
  color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 17px;
  width: 25%;
  border-radius: 0px;
}

.tablink:focus {
  outline: none;
}

.tablink:hover {
  background-color: #777;
}

.tabcontent {
  height: 71vh;
  display: none;
}

.tabcontent__preview {
  padding: 20px;
  padding-top: 50px;
}

#HTML__editor,
#CSS__editor,
#JS__editor {
  position: relative;
  height: 100%;
  width: 100%;
}

.text {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

footer {
  background-color: #fff;
  text-align: center;
  padding: 4em 0 2em 0;
  font-size: 0.8em;
}

footer mark {
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer a {
  text-decoration: none;
  color: #d52128;
}