* {
    margin: 0;
    padding: 0;
}


body {
    background-image: url("../images/odyssee-1.jpg");
    transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-position: bottom;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.4rem;
    color: #1e5758;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: auto;
}

.page-max {
    max-width: 1280px;
    margin: 0 auto;
}

.content {
    background-color: rgba(255,255,255,0.9);
    padding: 2rem;
    position: relative;
}

.content:after {
    content: '';
    position: absolute;
    border: 1px dashed rgba(255,255,255,0.8);
    top: -2px;
    right: -2px;
    left: -2px;
    bottom: -2px;
}

img {
    display: inline-flex;

}

h1 {
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

.d-flex {
    display: flex;
}
