After reviewing similar issues posted by others, I have not found a solution to my problem. Despite trying the suggested solutions, I am unable to center two buttons representing different departments on my webpage. Here is my source code:
<script src="assets/js/jquery-1.10.2.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.metisMenu.js"></script>
<script src="assets/js/custom.js"></script>
body{
font-family: 'Montserrat', sans-serif;
margin:0;
background-image: url("background.jpg ");
}
.container {
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
width: 80vw;
margin: 0 auto;
min-height: 100vh;
}
.btn {
flex: 1 1 auto;
margin: 10px;
padding: 30px;
float: left;
text-align: center;
text-transform: uppercase;
transition: 0.2s;
background-size: 200% auto;
color: black;
/* text-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
box-shadow: 0 0 0px #eee;
border-radius: 30px;
}
/* Demo Stuff End -> */
Good Services Delivery
You can view my current index.php layout https://i.sstatic.net/NgJBy.jpg.
I am seeking advice on how to effectively center my buttons on the page. Any suggestions?