body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /
  z-index: 0;
}
body > * {
  position: relative;
  z-index: 1;
}

body {
    position: relative;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    margin-top: 25vh;
}

h1 {
    font-size: 3.2em;
    font-weight: 400;
    margin-bottom: 50px;
}

.tile-group {
    margin-bottom: 40px;
}

.subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: white;
    font-weight: 500;
}

.tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.tile {
    background-color: transparent;
    border: 2px solid white;
    padding: 40px;
    font-size: 1em;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
    max-width: 300px;
    text-align: center;
	border-radius: 7px;
}

.tile:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.tile-title {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 10px;
}

.tile-description {
    font-size: 0.8em;
    font-weight: 300;
    color: white;
    opacity: 0.85;
}

footer {
  position: fixed;
  bottom: 10px;
  left: 20px;
  font-size: 0.75em;
  color: white;
  opacity: 0.7;
  z-index: 1000;
}

.logo-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  margin: 0;
  padding: 0;
}

.logo-container img {
  height: 40px;
  width: auto;
  max-width: 200px;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: black;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1em;
	font-weight: 500;
    cursor: pointer;
    z-index: 1002;
    transition: background-color 0.3s;
}

.floating-button:hover {
    background-color: #333;
}



