body {
    margin: 0;
    font-family: sans-serif;
}

@media (max-width: 600px) {
    .mainh1 {
        max-width: 300px;
        text-align:center;
    }
}


/*** Largest container ***/

.wrapper {
    max-width: 1000px;
    margin: auto;
    position: relative;
}

@media (max-width: 600px) {
    .wrapper {
        padding-top: 2em;
    }
}


/*** Flowers in corners ***/

.corner-image {
    position: fixed;
    width: 80px;
    object-fit: cover;
    z-index: -1;
}

@media (max-width: 600px) {
    .corner-image {
        width: 50px;
        height: 50px;
    }
}

.top-left {
    top: 0;
    left: 0;
    transform: scale(3);
    transform-origin: top left;
}

.top-right {
    top: 0;
    right: -82px;
    transform: scale(-3, 3);
    transform-origin: top left;
}


/*** Banner with our pretty faces ***/

.banner {
    background-image: url('images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    font-size: 2rem;
}

@media (max-width: 600px) {
    .banner {
        font-size: 1.2rem;
        height: 180px;
    }
}


/*** Main text adding padding ***/

.content {
    padding: 1rem;
    max-width: 800px;
    margin: auto;
}

h1, h2 {
    font-family: 'Dancing Script', cursive;
    text-align:center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

h2 {
    margin-top: 1.5em;
}

/*** Planning paragraphs ***/

p.info {
    text-align: center;
    font-weight: bold;
}

p.en, p.fr, p.ro {
    text-align: justify;
}

.en:before { content: "🇬🇧 ";}
.fr:before { content: "🇫🇷 ";}
.ro:before { content: "🇷🇴 ";}


/*** Photos in timeline ***/

.timeline img {
    width : 100%;
}

.timeline {
    text-align:center;
    margin-bottom:2em;
}


.div-small { display: none; }
.div-desktop { display: block; }
@media (max-width: 600px) {
.div-small { display: block; }
.div-desktop { display: none; }
}

.span-small { display: none; }
.span-desktop { display: inline; }
@media (max-width: 600px) {
.span-small { display: inline; }
.span-desktop { display: none; }
}

@media (max-width: 600px) {
/*
.myamp {
color:red;
}
display:block;*/
.myamp:before {
    content: '\A';
    white-space: pre;
}
.myamp:after {
    content: '\A';
    white-space: pre;
}
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
