@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "Montserrat";
    src: url('./fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;   
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url('./fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;   
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url('./fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400; 
  font-style: normal;
  font-display: swap;
}

body {    
    height: 100%;
    margin: 0 10px;
    overflow-x: hidden;
    background-color: #C0C0C0;

    box-sizing: border-box;
}

a {
  color: ffffff;
  text-decoration: none;
  
}

p {
  margin: 0;
}

p + p {
  margin-top: 15px;
}

ul {
  list-style: none; /*Убрали маркировку*/
  padding: 0;
  margin: 0;
}

h1, h2, h4, h5, h6 {
  font-weight: 700;
  margin: 0;
  color: black;
}

h3 {
  font-weight: 500;
}
.btn {
  padding: 14px 24px;
  font-size: 16px;
  background-color: #6441a5; 
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #333; /* Изменить цвет при наведении */
}