* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

@font-face {
    font-family: Font;
    src: url(font.ttf);
}

body {
  margin: 0;
}

header {
  background-color: #1b191a;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-family: Font, Arial, sans-serif;
  margin-top: 0;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px;
}

.box {
  width: calc(50% - 30px);
  margin: 15px;
  padding: 20px;
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}


.box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.box p {
  font-size: 18px;
  line-height: 1.5;
}


.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #333;
  font-size: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #333;
  color: #fff;
}


section + section {
  margin-top: 2rem;
}
