* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    overflow: hidden;
}

.background {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/layered-peaks-haikei.svg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-center {
    text-align: center;
    color: white;
    margin-bottom: 200px;  /* Increase this value to move both the brand and button higher */
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
}

.tagline {
    font-size: 1.5rem;
    color: orange;
    margin-top: 10px;
}

.r2scan-btn {
    position: absolute;
    bottom: 250px;  /* This value controls how far the button is from the bottom of the viewport */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    .btn {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .btn {
        font-size: 0.9rem;
    }
}
