@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+KR:wght@100..900&family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
</style>

* {
    box-sizing: border-box;
}

img {
    width: 100%;
}

nav a, nav li {
    color: #ffffff;
}

h1 {
    font-size: 40px;
    font-family: "Noto Sans KR";
    margin: 40px 0 10PX;
    text-align: center;
    color: black;
}

h2 {
    margin: 0.83em 0 0;
}

body {
    font-family: "Roboto", serif;
    margin: 0;
}

ul {
    margin: 5px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 15px;
}

header {
    
    text-align: center;
    font-size: 50px;
    font-family: "Pacifico", cursive;
    color: #ebf2fa;
    text-shadow: 0 0 10px black;
}

footer {
background: left/500px url("https://images.creativefabrica.com/products/previews/2024/05/14/nUwoWd2S7/2gSrzqKCOZeDdi5SDiPdIk02Kq7-desktop.jpg"), #ebf2fa;
font-size: 15px;
padding: 15px;
margin-top: 40px;
}

a {
    text-decoration: none;
}

#bienvenue {
    background-image: url("../images/coree-du-sud.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction; 
}

#slogan {
display: block;
font-size: 30px;
font-family: "Roboto", arial, sans-serif;
}

#top {
    font-size: 19px;
    text-align: center;
    margin-bottom: 40px;
    color: black;
}

#seoul {
    background-image: url("https://cdn.generationvoyage.fr/2015/06/bukchon-seoul.jpg");
grid-row: 1 / 3;
}

#busan {
    background-image: url("https://www.voyageway.com/wp-content/uploads/2018/04/temple-haedong-yonggungsa-busan.jpg");
      grid-column: 2 / 4;
}

#incheon {
    background-image: url("https://livingnomads.com/wp-content/uploads/2022/08/12/incheon-korea.jpeg");
}

#daegu {
    background-image: url("https://wallpaperaccess.com/full/3666172.jpg");
}

#flexbox-ville {
   /* display: flex; */
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;


}
.ville {
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 3px solid white;
    transition: all 0.2s; 
    border-radius: 30px;
    font-size: 40px;
    color: #ebf2fa;
    text-shadow: 0 0 30px black; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
}

.ville:hover {
 border: 3px solid rgba(0, 136, 255, 0.711);
}

.mot {
    color: rgb(230, 140, 6);
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.bold{
    font-weight: bold;
}

.contenu {
    padding: 10px;
    /*padding-left: 10px
    padding-right: 10px
    padding-bottom: 10px
    padding-top: 10px; */
}



.conteneur {
    width: 1300px;
    margin: 0 auto;
    color: #ebf2fa;
    text-shadow: #ebf2fa;
}

/* LE RESPONSIE DESIGN*/

@media all and (max-width: 1350px) {
    .conteneur {
        width: 800px;
    }
    #flexbox-ville {
        grid-template-columns: repeat(2, 1fr);
    }
    #busan {
        grid-column: auto;
    }
    #daegu {
        grid-column: 1/ 3;
    }
    }

@media all and (max-width: 768px) {
 
}

@media all and (max-width: 500px) {
 
}