/* CSS Reset / Normalize */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color: white;
    background-color: rgb(13, 11, 11);
    overflow-y: hidden;
    overflow-x: hidden;
}


/*Hero Section*/

main {
    display: flex;
    justify-content: center;
    padding-top: 9%;
}




#hero-container {
    height: 50vh;
    width: 50%;
    display: flex;
    gap: 1.5rem;
    max-height: 400px;
    min-height: 200px;
    min-width: 800px;
    flex-shrink: 0;
}

.title-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
}

.img-box img {
    height: 100%;
    width: auto;
    border-radius: 20px;
}


.title-text .btn {
    background-color: white;
    border-radius: 20px;
    background-image:  url('./assets/tacticalbagimg.jpg');
    background-position: right;
    background-size: cover;
    color: black;
    height: 100%;
    width:  100%;
    cursor: pointer;
}

