@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;1,500&family=Sriracha&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f9f9f9;
    background-position: center bottom;
    background-size: cover;
    background-repeat: space;
}


.top-bar {
    height: 100px;
    width: 95%;
    background-color:#021c55;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;   
    border-radius: 8px;
    margin: 30px auto;

}

.top-bar-left {
    display: flex;
    width: 38%;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    padding: 10px;
    text-align: center;
    height: 60px;
}

.top-bar-center {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 230px; 
    color: rgb(255, 255, 255);
    font-size: 30px;
}

.top-bar-right {
    justify-content: space-between;
    text-align: center;
    display: flex;
    font-size: 25px;
    text-align: center;
    width: 300px;
}


.tourist-spot {
    display: flex;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    align-items: top;
}

.tourist-spot h2 a {
    color: #FF0000;
    text-decoration: none;
    font-size: 35px;
    margin-left: 30px;

}

.tourist-spot p {
    margin-left: 30px;
    font-size: 24px;
    color: rgb(0, 0, 0);
}



.footer {
    background-color: blue;
    color: white;
    text-align: center;
    padding: 10px;
}
.name{
    text-decoration: none;
    color: white;
    opacity: 1;
    width: 45px;
    transition: all 0.5s;
    width: 500px;
    height: auto;
    border-radius: 8px;
}
.name:hover{
    opacity: 0.5;
}


