I'm making a website for my school and I'm trying to have 2 buttons next to each other.
.example_e {
border: none;
width: 50%;
background: #404040;
color: #ffffff !important;
font-weight: 100;
padding: 20px;
text-transform: uppercase;
border-radius: 6px;
display: inline-block;
transition: all 0.3s ease 0s;
}
.example_e:hover {
color: #404040 !important;
font-weight: 700 !important;
letter-spacing: 3px;
background: none;
-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
transition: all 0.3s ease 0s;
}
<div class="button_cont" align="left">
<a class="example_e" href="add-website-here" target="_blank" rel="nofollow noopener">
                Map to boys campus
</a>
</div>
<div class="button_cont" align="right">
<a class="example_e" href="add-website-here" target="_blank" rel="nofollow noopener">
Map to girls campus                
</a>
</div>