* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: verdana, sans-serif;
  font-size: 1rem;
  background-color: white;
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0px 30px;
}

header img {
  padding: 0;
  margin: 0;
  max-width: 90%;
}

h1 {
  font-size: 1.1rem;
  text-align: center;
  color: #636363;
  font-weight: bold;
  line-height: 25px;
}
h1.orange_mp {
  color: #de3a20;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px;
  margin-bottom: 100vh;
}

.language_separator {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 20px 5px 0px;
  border-top: 1px solid #de3a20;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px; /* Adjust the gap as needed */
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top10 {
  margin-top: 10px;
}

.top20 {
  margin-top: 20px;
}

.top30 {
  margin-top: 30px;
}
.top40 {
  margin-top: 40px;
}

.top50 {
  margin-top: 50px;
}

p {
  padding: 10px 0px;
}

a {
  text-decoration: none;
  color: #de3a20;
}