* {
    padding: 0;
    margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #dcdcdc;
    color: #141415;
    font-size: 16px;
    font-family: 'Open Sans';
}

h1, .h1 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    margin: 0;
    font-family: 'Dancing Script';
    padding: 24px 0;
}

h2, .h2 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Averia Libre';
    padding: 24px 0;
}

h3, .h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Averia Libre';
    padding: 24px 0;
}

button, .button {
    padding: 24px 12px;
    color: #fff;
    display: block;
    margin: 24px auto;
    background-color: #9A59AE;
    border: 2px solid #CDACD7;
    transition: background-color .3s linear;
    text-align: center;
    width: 316px;
    cursor: pointer;
}

button, .button:hover {
    background-color: #804A91;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 8px;
}

.padding-sides {
    padding: 0 12px;
}

.block {
    display: block;
}

dl {
    text-transform: uppercase;
}

.start {
    height: 100vh;
    background-image: url(images/hero.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    text-shadow: 2px 2px 6px #000;
}

.start h3 {
    padding-top: 24px;
    color: #fff;
    text-align: center;
}

h1.top-position {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
}

h1.bottom-position {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
}

nav {
    background-color: #9A59AE;
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 20;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

nav li {
    display: inline;
}

nav a.h3 {
    color: #fff;
    text-decoration: none;
}

.nos-image {
    max-width: 100%;
    margin-top: 24px;
}

.de-nos {
    display: flex;
    flex-direction: column;
    padding-left: 12px;
}

.confirmation {
    background-color: #fff;
    padding: 0 12px;
    margin: 24px 0 0 0;
}

.map-responsive {
    height: 0;
    overflow: hidden;
    padding-bottom: 56%;
    position: relative;
}

.map-responsive iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

span.material-symbols-rounded {
    vertical-align: bottom;
}

.thank-you {
    color: #141415;
}

@media screen and (min-width: 768px) {
    .two-columns {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
    
    .two-columns .nos-image {
        margin-top: 0;
        max-width: 600px;
    }
}