:root {
  --fon-header: #a0a0a0;
  --accent: #d4af37;
  --text: #e0e0e0;
  --link: #2883eb;

  --font-family: "Inter", sans-serif;
  --second-family: "Cinzel", sans-serif;
  --third-family: "Quicksand", sans-serif;
  --font3: "Montserrat", sans-serif;
  --font4: "Pirata One", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  color: inherit;
  background-color: transparent;
}

img {
  display: block;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--text);
  background: linear-gradient(180deg, #0f0f1c 0%, #1e1e2f 100%);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-dtb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-dtb {
  position: relative;
  width: 375px;
  padding: 30px 32px;
}

.section-title-dtb {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: var(--accent);
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 32px;
}

.section-subtitle-dtb {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--accent);
  margin-bottom: 24px;
}

@media screen and (min-width: 1440px) {
  .container-dtb {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    padding: 60px 80px;
  }

  .section-title-dtb {
    font-size: 48px;
    margin-bottom: 80px;
  }

  .section-subtitle-dtb {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
