@font-face {
    font-family: "marliana";
    src: url("./fonts/marliana.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "josefin";
    src: url("./fonts/josefin.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    padding: 0;
    margin: 0;
    justify-content: top;
    width: 100%;
    background-color: #425741;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    font-family: -apple-system, "Segoe UI", Helvetica Neue, Helvetica,
    Roboto, Arial, sans-serif, system-ui, "Apple Color Emoji",
    "Segoe UI Emoji";
    line-height: 1.5;
    color: #425741;
    background: url("./images/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.wrapper {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    align-self: center;
    padding-top: 1.8em;
}

.container {
    height: 100%;
    width: 800px;
    text-align: center;
}

.header {
    background-image: url("./images/top.png");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 40.625%;
}

.content-container {
    width: 60%;
}

.content-body {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
    background-image: url("./images/middle.png"), url("./images/bottom.png");
    background-repeat: no-repeat, repeat;
    background-position: left top, left bottom;
    background-size: 100% auto, 100% auto;
    width: 100%;
    padding-bottom: 4em;
}

.top-border {
    border-top: 1px solid #BC9A927D;
    margin-top: 2em;
}

h1, h2 {
    font-family: "marliana";
    text-transform: capitalize;
    font-weight: normal;
}

h1 {
    font-size: 2em;
    margin-bottom: 0;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 0;
}

h3 {
    font-weight: bold; 
    font-size: 1em;
    margin: 0;
}

h4 {
    text-transform: uppercase;
    color: #BC9A92;
    font-size: 1em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.cta-container {
    padding: 1em;
}

.cta-container a:link {
    text-decoration: none;
    font-family: "marliana";
    border: 1px solid #BC9A92;
    background-color: #42574120;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 1em;
}
  
.cta-container a:hover {
    background-color: #42574150;
}

.accommodation {
    font-size: 0.95em;
    padding-bottom: 1.6em;
}

.note {
  font-size: 0.8em;
  font-style: italic;
}

a:link, a:visited, a:active {
    color: #425741;
}

hr {
    width: 30px;
    background-color: #BC9A927D
}

@media only screen and (min-height: 851px) and (max-width: 1000px) and (orientation: portrait) {
    .container {
        width: 100%;
    }

    body {
        font-size: 1.5em;
    }
    
    .content-container {
        width: 75%;
    }

    .content-body {
        padding-bottom: 2em;
    }

    .cta-container a:link {
        padding-left: 3em;
        padding-right: 3em;
    }
}

@media only screen and (min-height: 851px) and (max-width: 1000px) and (orientation: landscape) {
    .container {
        width: 800px;
    }

    body {
        font-size: 1.5em;
    }
    
    .content-container {
        width: 75%;
    }

    .content-body {
        padding-bottom: 2em;
    }

    .cta-container a:link {
        padding-left: 3em;
        padding-right: 3em;
    }
}