* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: black;
}

.header {
    background-color: white;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    color: black;
    border: 5px solid black;
}

.header h1 {
    display: inline-block;
    font-size: 48px;
    border: 5px solid black;
}

.header h1 .JR {
    color: red;
}

.header div {
    padding-top: 10px;
    margin-right: 15px;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.header div ul {
    list-style-type: none;
}

.header div ul li {
    display: inline-block;
    margin-left: 20px;
}

a {
    color: black;
    text-decoration: underline;
}

p {
    font-size: 20px;
}

.main {
    display: flex;
    height:600px;
    width: 100%;
    margin-bottom: 25px;
    background-image: url("../assets/Images/CSS portfolio image.jpg");
    background-size: cover;
    background-position: center;
}

.content {
    padding-left: 200px;
    width: 75%;
    display: inline-block;
    margin-left: 20px;
}

.About-Me {
    margin: 20px;
    padding: 25px;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;
    color: white;
    float: right;
    text-align: center;
}

.About-Me h2 {
    margin-bottom: 20px;
    font-size: 50px;
    border: 2px solid red;
}

.The-Journey {
    margin: 20px;
    padding: 50px;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;
    color: white;
    float: right;
    text-align: center;
}

.The-Journey h2 {
    margin: 20px;
    font-size: 50px;
    border: 2px solid red;
}

.journey-box {
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    text-align: center;   
}

.box {
    width: 50%;
    height: 100px;
    background: black;
    margin: 20px;
    box-sizing: border-box;
    font-size: 25px;
    transition: 1s;
}

.box:hover {
    transform:scale(1.3);
}

.box .image1 {
    width: 10%;
    height: 50px;
}

.box .image2 {
    width: 10%;
    height: 50px;
}

.box .image3 {
    width: 10%;
    height: 50px;
}

.Contact-Me {
    color: white;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
    border: 2px solid red;
}

.Contact-Me h3 {
    font-size: 48px;
}

.Contact-Me ul {
    list-style-type: none;
}


@media screen and (max-width: 1000px) {
    body {
        background: white;
        color: black;
    }
}

@media screen and (max-width: 992px) {
    .Contact-Me {
        color: black;
    }
}