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

body{
    font-family: "Montserrat", sans-serif;
}
nav{
    position: relative;
}
.safari-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px 0px 0px 50px;
}
.safari-title{
    font-size: 40px;
    color: #8d6914;
}
.safari-picture{
    margin-top: 30px;
    width: 60%;
    height: 200px;
    background-color: #8d6914;
    background: url(../images/safari.jpg);
    background-position: bottom;
    background-size: contain;
    
}
.safari-content{
    margin-top: 40px;
    width: 70%;
    margin-bottom: 30px;
}

.book-link{
    background-color: #8d6914;
    width: fit-content;
    padding: 8px;
    color: white;
    text-decoration: none;
}
@media (max-width: 1195px) {
    .safari-title{
        font-size: 18px;
        margin-top: 40px;
    }
    .safari-container{
        margin: 0;
        align-items: center;
    }
    .safari-picture{
        width: 100%;
        height: 100px;
        background-repeat: no-repeat;
    }
    .safari-content{
        width: 100%;
        text-align: justify;
        padding: 0px 20px 0px 20px;
    }
}