@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.first-character {
    font-weight: 400;
    float: left;
    font-size: 84px;
    line-height: 64px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #ff672d;
}

.parallax2 {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url('../images/sandingMachine.jpg');
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;

}

.parallax2 h2 {
    font-size: 70px;
    letter-spacing: 10px;
    text-align: center;
    color: white;
    font-weight: 400;
    text-transform: uppercase;
    z-index: 10;
    opacity: .9;
}

.btn-orange {
    background-color: #ff672d;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #e65c26;
    color: white;
}

.btn-orange:focus,
.btn-orange:active {
    background-color: #cc5222;
    color: white;
    outline: none;
    box-shadow: none;
}

/* Media Queries for responsiveness */
@media (max-width: 1200px) {
    .parallax2 {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .parallax2 h2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .parallax2 {
        padding-top: 100px;
        padding-bottom: 100px;
        background-attachment: scroll;
        /* Disable parallax effect on smaller screens */
    }

    .parallax2 h2 {
        font-size: 40px;
        letter-spacing: 5px;
    }
}

@media (max-width: 480px) {
    .parallax2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .parallax2 h2 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}