/* GLOBAL */
html {
    scroll-behavior: smooth;
  }
body {
    max-width: 1920px;
}
/* FONTS */
.primary-color {
    color: #b76b79;
}
.primary-bg {
    background: #b76b79;
}
h1, h2 {
    font-family: 'Akbaal', sans-serif;
    font-optical-sizing: auto;
}

p {
    font-family: sans-serif;
    margin: 10px;
}

h1 {
    font-style: italic;
}

h4 {
    color: #b76b79;
    margin: 0 0 5px;
    font-size: 2em;
    font-family: 'Akbaal', sans-serif;
    font-weight: 400;
    font-style: normal; 
    text-align:center;  
}
.button-wrapper {
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    position: relative;
    margin-top: 20px;
    justify-content: space-around;
}
.button {
    background: rgba(255, 255, 255, 0.6);
    color: black;
    padding: 10px;
}
/* FONTS */

.bg-opacity05:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    background: rgba(0,0,0, 0.5);
    left: 0;
    top: 0;
 }

 /* END OF GLOBAL */

/* body CSS */
.underslider {
    h2 {
        transition: 0.5s all ease;
    }
    a:hover h2 {
        font-size: 2rem;
        transition: 0.5s all ease;
    }
}