﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

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

body {
  background: url('../img/bg_pc.jpg') center center / cover no-repeat fixed;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
}

a {
  color: #004AAD;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #004AAD;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #1a1a1a;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

#hero {
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  position: relative;
}

.beli-btn {
  background: #29652f;
  color: #ede3d6;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  display: block;
  position: fixed;
  width: 20vw;
  text-align: center;
  top: 77%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
}

.beli-btn:hover {
  filter: brightness(0.95);
  background: #ede3d6;
  color: #29652f;
}

@media (max-width: 768px) {
  body {
    background: url('../img/bg_hp.jpg') center center / cover no-repeat fixed;
  }

  .beli-btn {
    width: 50%;
    top: 85%;
  }
}