body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: url('../img/background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h2 {
    font-size: 30px;
    color: #000;
    margin: 10px 0;
}

h1 {
    font-size: 50px;
    color: #000;
    font-weight: 700;
    margin: 10px 0;
}

.button-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0 50px;
}

.button-group a {
    display: inline-block;
    background-color: transparent;
    color: #000;
    border: solid 1px #000;
    padding: 0px 15px;
    font-size: 16px;
    border-radius: 6px;
    height: 38px;
    line-height: 38px;
    text-decoration: none;
}

.button-group a:hover {
    background-color: #000;
    color: #fff;
}