* {
    box-sizing: border-box;
}

body, html {
    height: 100vh;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: url(/assets/pexels-artempodrez.jpg);
}

hr.rounded {
    border:none;
    border-top: 8px solid #000000;
    margin-top: auto;
}

.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/assets/mambo.gif");
    height: 30%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    background-color:#000000;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navbar li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar li {
    float: left;
}

.navbar li a:hover {
    background-color: #252525;
}

.navbar li a:active {
    background-color: #922da0;
}

.hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;;
    color: black;
    background-color: #f4eff8;
    text-align: center;
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-text button:hover {
    background-color: #9a62ce;
}

.hero-text button:active {
    background-color: #922da0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gallery_item {
    list-style: none;
    text-align: center;
    margin: 10px;
    padding: 1.2em;
    max-width: 100%;
    background-color: #f4eff8;
    box-shadow: 8px 8px 0 #000;
    border-radius: 3px;
    width: calc(25% - 20px);
}

.gallery_desc {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: rgb(8, 8, 8);
    text-align: center;
}

.footer_text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    padding: 10px;
    text-align: center;
    margin-left: 45vw;
    color: rgb(0, 0, 0);
}