.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #c1773a;
  height: 100%;
  color: white;
  border-radius: 10px;
}

.topnav {
  overflow: hidden;
  background-color: #a98787;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  float: left;
  color: rgb(255, 255, 255);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a.icon {
  float: right;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: #345765;
  color: white;
}

ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
}

a{
    color: rgb(220, 121, 0);
    background-color: transparent;
    text-decoration: underline;
}

section{
    display: flex;
}

p{
  font-family: cursive;
    background-color: #464646;
    color: white;
    flex-direction: row;
    padding: 10px;
    margin: 20px;
    justify-content: center;
    border-radius: 5px;
    flex-grow: 1;
    flex-basis: 0;
    flex-shrink: 1;
    text-align: center;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  max-height: 100%;
  height: auto;
  font-family: sans-serif;
  background-color:rgb(119, 67, 36) ;
}

.hero-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: url(HolyOlyOs\ New\ Logo.jpg) no-repeat center;
  background-size: cover;
}

.hero-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-container h1 {
  font-size: 2.5em;
  letter-spacing: 0.2em;
  margin: 0;
}

.hero-container h1 span {
  border: 10px solid white;
  padding: 6px 14px;
  display: inline-block;
}

.des {
  margin: 20px;
  display: block;
  font-size: 1.6em;
  text-shadow: 0 0 10px black;
}

.btn {
  color: #313131;
  padding: 10px 24px;
  font-size: 1.25em;
  text-decoration: none;
  background: #f1f1f1;
  border-radius: 8px;
  transition: 0.3s all;
}
.btn:hover {
  opacity: 0.8;
}