/*
Copyright 2025 diyyo Insider, Inc. Technical Department
- Use of this source code is licensed under CC BY-NC-SA 4.0
- This file contains css style for main website
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  background: #d4d6d5;
  color: rgba(0, 0, 0, 0.87);
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 0;
}

/*custom color*/
.btn-danger {
  background: #ed4245;
}

.btn-success {
  background: #57f287;
}

.btn-warning {
  background: #fee75c;
}

.danger {
  color: #ed4245;
}

.success {
  color: #57f287;
}

.warning {
  color: #fee75c;
}

a {
  background: #571d2c;
  display: block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  padding: 16px;
  border-radius: 4px;
}

.content {
  background: white;
  max-width: 360px;
  margin: 100px auto 16px;
  padding: 32px 24px 16px;
  border-radius: 3px;
}

h3 {
  color: #888;
  font-weight: normal;
  font-size: 16px;
  margin: 16px 0 12px;
}

h2 {
  color: #571d2c;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 8px;
}

h1 {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  margin: 0 0 16px;
}

p {
  line-height: 140%;
  margin: 16px 0 24px;
  font-size: 14px;
}

.content,
a {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.placeholder {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 13px;
}

.header {
  text-align: center;
  background-color: #571d2c;
  position: sticky;
  width: 100%;
  padding: 1 0 1;
  left: 0;
  top: 0;
  top: 0;
}

.header h1,
.header a {
  font-size: 20px;
  text-decoration: none;
  color: white;
}

.footer {
  text-align: center;
  position: static;
  bottom: 0;
  width: 100%;
  height: 50;
  margin: 0;
  padding: 10 0 0;
  background-color: #571d2c;
  color: white;
}

.footer h2 {
  font-size: medium;
  margin: 0 auto 0;
}

.footer p {
  font-size: medium;
  margin: 0 auto 20;
}

.footer a {
  color: #fee75c;
}

@media (max-width: 600px) {
  body,
  .content {
    margin-top: 0;
    background: white;
    box-shadow: none;
  }

  body {
    border-top: 16px solid #571d2c;
  }

  .header h1,
  .header a {
    font-size: 16px;
  }
}
