*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html,body{
    width:100%;
    overflow-x: hidden;
   /* background:linear-gradient(rgb(4, 61, 68),rgb(184, 198, 198));*/
    background-image:url('seaview.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-position: bottom;
    background-size: cover;
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
    "wdth" 100,
    "YTLC" 500;

}
.town{
    background-image:url('trincotown.png');
    width:100%;
    height:800px;
    background-position: center;
    background-size: cover;
    display:flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

}
#title{
    background:linear-gradient(rgb(115, 200, 210),rgba(255, 255, 255, 0));
    margin-top:90px;
    padding-right:100%;
    padding-left:100%;
    padding-bottom:120px;
    padding-top:80px;
    margin-top:0;
    white-space: nowrap;
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    font-style: normal;
    color:white;
    text-shadow:0 0 10px  black;
}
#townname{
    margin-bottom:100px;
    font-family: "BBH Sans Bartle", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:white;
    text-shadow: 5px -15px black;
    letter-spacing: 5px;
}
.mainbody{
    display:flex;
    flex-direction: column;
    align-items: center;
    /*background-image: url('beach.png');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    margin-top:100px;
}
.mainbody h2{
    /*border: 3px solid black;*/
    border-radius: 30px;
    box-shadow: 10px 10px 3px rgb(0, 0, 0);
    background: rgb(250, 248, 241);
    padding:10px;
    margin-bottom:100px;
    margin-top:20px;
    font-size: 30px;
    color:rgb(19, 36, 64);
    
}
.info{
    display:flex;
    justify-content:space-evenly;
    align-items:flex-start;
    gap:200px;
    padding:20px;
    margin-bottom:100px;
}
.sect{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 5px -5px black;
    padding:15px 20px 20px 20px;
    width:300px;
    text-align: center;
    height:450px;
    background-color: rgb(22, 71, 106);
    color:rgba(231, 231, 231, 0.945);
    text-shadow: 0 0 10px rgb(255, 255, 255);
    transition: transform 0.1s ease,box-shadow 0.3s ease,text-shadow 0.5s ease;

}
.sect h3{
    flex-grow:1;
    padding-bottom:10px;
    text-shadow: 1px 0 1px #000000;
    transition: transform 0.6s ease,padding-top 0.3s ease;
}
.sect img{
    width:100%;
    display:block;
    border-radius:8px;
    margin-bottom:10px;
    transition: transform 0.6s ease;
}
.sect:hover{
    width:320px;
    height:470px;
    font-size: 18px;
    transform: scale(1.00);
    box-shadow: 10px -10px 5px rgba(0,0,0,0.3);
    text-shadow: 0 0 50px white;
    color:white;
}
.sect:hover img{
    transform: scale(1.15);
}
.sect:hover h3{
    padding-top:10px;
    transform: scaleY(1);
}

#more{
    width:60px;
    height:30px;
    padding:2px;
    margin-top:10px;
    border-radius: 10px;
    align-self:center;
    margin-top:auto;
    font-family: "Bebas Neue", sans-serif;
    font-size:15px;
    font-style: normal;
}
.sect button{
    transition: font-size 0.3s ease,transform 0.3s ease;
}
.sect:hover button{
    font-size:20px;
    transform:scale(1.1);
}
#more:hover{
    background: rgb(95, 252, 47);
}
#more:active{
    background: rgb(0, 100, 2);
}
.map,a{
    text-align: center;
    margin-top:100px;
    color:white;
    font-size:20px;
}