body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    overflow: hidden;
}

.background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.text-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.text-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.07);
    font-size: 6vw;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    user-select: none;
}

.center-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.download-btn {
    background-color: #ff7a59;
    color: #000;
    font-size: 40px;
    font-weight: bold;
    padding: 30px 70px;
    border: 4px solid #000;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
    text-decoration: none;
}


.download-btn:hover {
    background-color: #ff5c36;
}

.crack-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/Noise & Texture.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.25;
    z-index: 2;
}
a {
  text-decoration: none;
}			
