* {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    margin: 0;
    font-family: 'Unica One', sans-serif;
    background: #111;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 5rem;
  }
  
  .heading {
    color: #eee;
    font-size: 5rem;
    font-weight: 300;
    text-transform: uppercase;
  }


  body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.outbutton {
    max-width: 80%;
    text-align: center;
}

.corner-button:before,
.corner-button span:before,
.corner-button:after,
.corner-button span:after {
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.corner-button {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    letter-spacing: 5px;
    text-align: center;
    position: relative;
    min-width: 100px;
    min-height: 10px;
    margin: 20px;
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
    color: #25ccf7;
    border-radius: 10px;
    padding: 12px 20px;
    box-sizing: content-box;
    border: 2px solid transparent;
    text-align: center;
    line-height: 30px;
    transition: 0.75s ease;
}
.corner-button:before {
    top: -2px;
    left: -2px;
    border-top: 2px solid #0fbcf9;
    border-top-left-radius: 8px;
    border-left: 2px solid #0fbcf9;
    transition: 0.75s all;
}
.corner-button:after {
    top: -2px;
    right: -2px;
    border-top: 2px solid #0fbcf9;
    border-top-right-radius: 8px;
    border-right: 2px solid #0fbcf9;
    transition: 0.75s all;
}
.corner-button span {
    display: block;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
}
.corner-button span:before {
    bottom: -2px;
    left: -2px;
    border-bottom: 2px solid #0fbcf9;
    border-bottom-left-radius: 8px;
    border-left: 2px solid #0fbcf9;
    transition: 0.75s all;
}
.corner-button span:after {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid #0fbcf9;
    border-bottom-right-radius: 8px;
    border-right: 2px solid #0fbcf9;
    transition: 0.75s all;
}
.corner-button:hover {
    color: #ffffff;
    border-radius: 10px;
}
.corner-button:hover:before,
.corner-button:hover:after {
    border-color: #1b9cfc;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.corner-button:hover span:before,
.corner-button:hover span:after {
    border-color: #1b9cfc;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
button:hover span::before,
button:hover span::after {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.fixed-button {
  position: fixed;
  bottom: 20px; /* Odległość od dolnej krawędzi */
  left: 50%; /* Wyśrodkowanie względem ekranu */
  transform: translateX(-50%); /* Przesunięcie do środka */
  z-index: 1000; /* Aby upewnić się, że jest nad innymi elementami */
}
