body,
html {
    margin: 0;
    height: 100%;
}

body {
    background-image: url(../img/Background_2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F4F4F4;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.3em;
}

h1 {
    font-family: 'Black Han Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2em;
    font-size: 3em;
    margin-top: 0.5em;
    margin-bottom: 0;
    color: white;
}

.subContainerADiv p {
    color: white;
}

#mainContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 90%;
    /* background-color: green; */
}

#subContainerOne {
    display: flex;
    flex-direction: column;
    width: 20%;
    height: 100%;
    margin-left: 6em;
    margin-top: 0;
    border-width: 0px 0px 0px 2px;
    border-style: solid;
    border-image: linear-gradient(180deg, black 0%, white 100%) 1;
    /* background-color: blue; */
}

#mainNavBar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: 10%;
    width: 100%;
    margin: 2em 0em 0em 0em;
    /* background-color: pink; */
}

#mainNavBar .aboutUs {
    text-decoration: none;
    align-self: center;
    padding-left: 2em;
    color: black;
}

#mainNavBar .aboutUs:hover {
    text-decoration: underline;
    font-weight: 700;
}

#logo {
    height: 100%;
    /* width: 100%; */
}

#subContainerA {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    height: 90%;
    width: 100%;
    padding-left: 1.5em;
    /* background-color: blueviolet; */
}

.subContainerADiv {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 20%;
    width: 100%;
    padding-bottom: 1.5em;
    /* background-color: aqua; */
}

#subContainerTwo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 70%;
    height: 100%;
    /* background-color: red; */
}

.subContainerBDiv {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 33%;
    height: 100%;
    /* background-color: magenta; */
}

.buttonContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
}

.weapons {
    width: 100%;
    padding-top: 30px;
    margin: 0 auto;
}

button {
    border: none;
    background: none;
    font-family: 'Black Han Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2em;
    color: black;
}

.buttons {
    text-align: center;
}

.border {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-self: flex-start;
    width: 8%;
    height: 33%;
    /* background-color: darkorange; */
    border-left: 2px black solid;
    margin: 0;
}

.subContainerBDiv:hover .border {
    border-left: 4px black solid;
    height: 25%;
    transition: 0.1s;
}

.subContainerBDiv:hover .weapons {
    width: 115%;
    transition: 0.1s;
}

.subContainerBDiv:hover button {
    font-size: 3em;
    cursor: pointer;
    transition: 0.1s;
    /* width: 100%;
    height: 110%;
    margin: 0; */
}

.subContainerBDiv:hover .buttonContainer p {
    font-weight: 700;
    transition: 0.1s;
}