body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #EAD7BB;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  box-sizing: border-box;
}
html{
    box-sizing: border-box;
}

.container {
  text-align: center;
}

.logo {
  max-width: 200px;
  margin-bottom: 20px;
}

h1 {
  color: #333;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: #E53225;
  border: 3px solid #E53225;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
  background-color: #E53225;
  color: white;
}
.links{
    text-align: center;
    margin-bottom: 20px;
}
.btn-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 0;
  background-color: #E53225;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;

}