.dome-section{

position:relative;

text-align:center;

overflow:hidden;

}

.dome-light{

width:260px;
height:260px;

margin:auto;

border-radius:50%;

background:

radial-gradient(
circle,
rgba(229,200,123,.8),
transparent
);

animation:
domePulse 6s infinite;

}

.dome-content h2{

font-size:72px;

margin:50px 0;

}

#domeText{

display:grid;

gap:24px;

}

#domeText p{

font-size:28px;

line-height:1.8;

color:#d2dae4;

}

.dome-closing{

margin-top:60px;

font-size:32px;

line-height:1.8;

color:#e5c87b;

font-weight:600;

}

@keyframes domePulse{

0%{

transform:scale(.9);

opacity:.6;

}

50%{

transform:scale(1.2);

opacity:1;

}

100%{

transform:scale(.9);

opacity:.6;

}

}