body {
    margin: 0;
    padding: 0;
}

.body-container {
    display: flex;
    width: 100%;
    padding: 5%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 850px;
}

.bright-container {
	display: flex;
    position: absolute;
    overflow: hidden;
    z-index: 10;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-sizing: border-box;
    min-height: 850px;
	opacity: 0.1;
}

.svg {
    display: flex;
    position: absolute;
    bottom: 0;
    right: -30%;
    width: 80%;
    height: 80%;
    -moz-transform: scaleX(-1) rotate(24deg);
    -o-transform: scaleX(-1) rotate(24deg);
    -webkit-transform: scaleX(-1) rotate(24deg);
    transform: scaleX(-1) rotate(24deg);
}

.svg svg {
    width: 100%;
    height: 100%;
}

.attention {
    border: 1px solid white;
    padding: 5px 12px;
    width: fit-content;
}

.body-container .background {
    position: relative;
    background-color: #0d1511;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    padding: 5% 10%;
	box-sizing: border-box;
}

h1, p, h4, span {
    color: #fff;
    display: inline-block;
    text-align: left;
    justify-content: flex-end;
}

h4 {
    margin: 0 0 10px 0;
}

.spacer {
    height: 40px;
}

p, span, ul, li {
    font-size: 1.5vw;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 200;
    font-style: normal;
}

span {
	display: inline;
}

ul, li {
	color: white;
}

h4 {
    font-size: 3vw;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@media only screen and (max-width: 600px) {

    .svg {
        left: -10%;
        width: 50%;
        height: 50%;
    }

    h4 {
        font-size: 10vw;
    }

    p, span, li {
        font-size: 5vw;
    }

    .body-container {
        min-height: 600px;
    }

    .bright-container {
        min-height: 600px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
    .svg {
        left: -15%;
        width: 60%;
        height: 60%;
    }

    h4 {
        font-size: 7vw;
    }

    p, span {
        font-size: 3vw;
    }

    .body-container {
        min-height: 700px;
    }

    .bright-container {
        min-height: 700px;
    }
}

@media only screen and (min-width: 801px) and (max-width: 1100px) {
    .svg {
        left: -20%;
        width: 70%;
        height: 70%;
    }

    h4 {
        font-size: 5vw;
    }

    p, span {
        font-size: 2vw;
    }

    .body-container {
        min-height: 800px;
    }

    .bright-container {
        min-height: 800px;
    }
}