@font-face {
    font-family: 'Poppins';
    src: url('path-to-fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    
    overflow-x: hidden;

    font-family: 'Poppins', sans-serif;
}


.welcome-section {
    background-image: url('welcome.jpg'); 
    background-size: cover;
    height: 100vh; 
    
    text-align: center;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.places-section {
    background-image: url('places.jpg');
    background-size: cover;
    
    color: white;

}
.place a img {
    max-height: 200px;
    border-radius: 10px;
    transition: transform 0.3s; 
}

.place a img:hover {
    transform: scale(1.05);
}

.facts-section {
    background-image: url('facts.jpg'); 
    background-size: cover;
    background-position: center;
    height: 100vh;
    
    text-align: left;
    color: black;
    font-weight: bold;
    
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}

.facts-section h1 {
    font-size: 28px;
    font-weight: bold;
    
    margin: 20px 0;
}

.facts-section ul {
    list-style: none;
    padding: 0;
}

.facts-section li {
    font-size: 20px;
    margin: 10px 0;
} 

.history-section {
    background-color: rgb(153, 166, 161);
    text-align: center;
    padding: 20px;

}

.history-section h1 {
    font-size: 28px;
    margin: 20px 0;
}

.image-text img {
    max-width: 40%;
    border-radius: 15px;
}

.history-section .image-text p {
    font-size: 16px;
    font-weight: bolder;

    line-height: 1.2;
    flex-grow: 1;
}