/*index Logo Image*/
#imglogoL {
    width: 40%;
    height: auto;
}

.indexBlock {
    width: auto;
    height: auto;
    border: 1px solid;
    padding: 0;
    margin: 1px;
    display: grid;
    grid-template-rows: auto;
    grid-template-areas: "left right";
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/woodBarrelTextureB.jpg);
    background-size: cover;
}

.indexRightSide {
    grid-area: right
}

.indexLeftSide {
    grid-area: left
}

.indexBlockImage {
    height: auto;
    width: 100%;
}

.indexBlockText {
    color: whitesmoke;
    text-align: left;
    padding: 10px;
}

#indexSubtitle {
    font-size: 40px;
    font-weight: bold;
}

#btnInfo {
    background-color: darkgray;
    width: 120px;
}

#newThings {
    margin: 20px;
    color: indianred;
    
}

@media screen and (max-width: 900px) {
    #imglogoL {
        width: 60%
    }
}

@media screen and (max-width: 750px) {
    .indexBlock {
        display: grid;
        grid-template-rows: auto;
        grid-template-areas: "left"
            "right";
    }
}

@media screen and (max-width: 600px) {
    #imglogoL {
        width: 75%
    }

    #indexSubtitle {
        font-size: 30px;
    }
}