/*
Siipiparoni
*/

* {
  outline: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  background: #0e1317;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo {
  width: 236px; /* adjust the width to your logo's size */
  height: 80px; /* adjust the height to your logo's size */
  margin-bottom: 20px; /* add some space between logo and text link */
}

a {
  padding: 10px 20px;
  border: none;

  cursor: pointer;
  text-align: center;
}

.text-link-wrapper {
  text-align: center; /* center the text link horizontally */
}
.text-link {
  background-color: #f8bc0d;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.95rem;
  border-radius: 15px;
  display: inline-block; /* add this to make it a block element */
  text-decoration: none;
  color: #ffffff; /* adjust the color to your liking */
  transition: background-color 0.2s ease-in-out; /* add transition effect */
}

.text-link:hover {
  background-color: #ffc107; /* change the background color on hover */
  color: #0e1317; /* change the text color on hover */
}
