@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("./fonts/Montserrat-Regular.ttf") format("ttf");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  src: url("./fonts/Montserrat-Medium.ttf") format("ttf");
}

/*
 * MAIN CONTAINERS
 */

html {
  width: 100%;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background-color: #fcfcfc;
}

/*
 * MAIN ELEMENTS STYLE
 */

* {
  box-sizing: border-box;
}

div,
footer,
header,
main,
nav,
section {
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
}

p {
  margin: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: color 0.35s ease-out 0.05s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  transition: color 0.35s ease-out 0.05s;
}

button {
  cursor: pointer;
  padding: 0;
  border-width: 0;
  background-color: transparent;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: none;
}

input {
  height: 34px;
  padding: 0 12px;
  border-radius: 0;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.54rem;
  box-shadow: none;
}

input:focus {
  outline: none;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}

/* WARN PAGE STYLES */
header {
  width: 100%;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 50%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

main {
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}

.content {
  width: 100%;
  max-width: 540px;
}

.divider {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.divider-line {
  flex-grow: 1;
  flex-shrink: 1;
  border-bottom: 1px solid #3a3a3a;
}

.divider-icon {
  flex-grow: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.content-info {
  width: 100%;
  gap: 16px;
  padding: 0 0 32px 0;
}

.content-info-text {
  width: 100%;
  padding: 12px 0 16px 0;
}

h1 {
  margin: 0 0 24px 0;
  font-size: 1rem;
  text-align: center;
  opacity: 0.65;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

h3 {
  text-align: center;
  text-transform: uppercase;
}

p {
  font-size: 1.2rem;
  line-height: 1.22;
  text-align: justify;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(124, 124, 124, 0.08);
}

.icon-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: 50% 50%;
}

.link-button-text {
  color: #030303;
  font-size: 1.2rem;
}

footer {
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}

footer span {
  opacity: 0.65;
  text-align: justify;
}

.content-contacts {
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(124, 124, 124, 0.08);
}
