I'm in the process of creating a website with a prominent jumbotron section on the landing page. I am looking to adjust the height of the image within the jumbotron without cutting off any parts of the picture, and I do not want it to scroll to display the full image.
{% extends "base.html" %}
{% block style %}
.img{
height: 750px;
}
{% endblock %}
{% block body %}
<div class="jumbotron jumbotron-fluid img" style="margin-left: 0%; margin-right: 0%; background-image: url('static/Background.jpg'); background-repeat: no-repeat; background-size: cover;">
<div class="container">
<h1 class="display-3" style="font-weight: 500">S</h1>
<p class="lead">Here is where you can learn more about me</p>
</div>
</div>
{% endblock %}