* {
  box-sizing: border-box;
}
body{
  background: #012310;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.blockContent{
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem;
}
ul, li, a {
  text-decoration: none;
  list-style: none;
  color: inherit;
  padding: 0;
  outline: none;
}
h1{
  color: #ffffffdf;
  display: none;
}
.ulBlock{
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
}
img{
  max-width: 30rem; 
  height: auto;
}
a {
   display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12rem;
  background: #012310;
  color: #ffffffdf;
  border: 3px solid #003718;
  width: 16.9rem;
  height: 5.65rem;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  text-decoration: none;
}
a:hover{
  cursor: pointer;
  border: 3px solid #f6cc70;
  background-color: #dbb25a;
  color: #012310;
}
.fab{
  margin-right: 0.4rem;
}
@media (max-width: 1000px){
  a{
    width: 13.75rem;
    font-size: 14.4px;
  }
}
@media (max-width: 860px){
  .ulBlock{
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}
  img{
   width: 18.75rem; 
}
  a{
    font-size: 0.75rem;
    height: 4.375rem;
  }
}
@media (max-width: 360px){
  img{
   width: 15.625rem; 
}
}