.navbar
{
    margin-bottom: 35px;
    width: 100%;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0047AB;
}

.navbar li 
{
    float: left;
}

.navbar li a 
{
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 18px;
}

.navbar li a:hover:not(.active) 
{
    background-color: red;
}

.navbar .active 
{
    font-weight: bolder;
    color: yellow;
}

.color 
{
    background-color: black;
}

.box
{
    width: 1200px;
    height: 500px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.box-img img
{
    flex: 50%;
    height: 500px;
    width: 600px;
}

.box-content
{
    margin: auto;
    flex: 50%;
}

.box-content p
{
    font-size: 40px;
    margin-bottom: 20px;
    font-family: Chalkduster, fantasy;
}

.box-content button
{
    background-color: #3f3f3f;
    width: 150px;
    height: 50px;
    border: none;
}

.box-content button a
{
    text-decoration: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}