*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

html {
    scroll-behavior: smooth;
}

.container{
    display:  flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 20px 0 20px;
}

.container .heading{
    width: 50%;
    padding-bottom: 50px;

}
.container .heading h3{
    font-size: 3em;
    font-weight: bolder;
    padding-bottom: 10px;
    border-bottom: 3px solid #222;
}

.container .heading h3 span{
    font-weight: 100;
}

.container .box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container .box .section1{
    display: flex;
    flex-direction: column;
    width: 32.5%;
}

.container .box .section1 img{
    width: 100%;
    padding-bottom: 15px;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    cursor: pointer;
}

.container .box .section1 img.show {
    opacity: 1;
    transform: translateY(0);
}

.container .btn{
    margin: 40px 0 30px 0;
    color: white;
    background: #222;
    padding: 15px 40px;
    border-radius: 5px;
    letter-spacing: 3px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.container .btn:hover {
    transform: scale(1.08);
}

.hide {
    display: none;
    font-weight: bold;
    color: white;
}

.hide.show {
    display: block;
    margin-bottom: 30px;
}

.container .link {
    padding: 10px 40px;  
}

.container .link a{
    display: inline-block;
    color: #222;
    transition: transform 0.3s ease;
    text-decoration: none;
    transition: transform 0.3s ease, font-weight 0.3s ease;
    margin-right: 40px;
}

.container .link a:hover{
      transform: scale(1.2);
      font-weight: bold;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.show img {
    transform: scale(1);
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    color: white;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

body {
    background: linear-gradient(
        to bottom,
        #fff5f7 0%,
        #ffd9df 50%,
        #fb6853 100%
    );

    min-height: 100vh;

    background-attachment: fixed;
}

@media only screen and  (max-width: 769px) {
    .container .box{
    flex-direction: column;
}
.container .box .section1{
    width: 100%;
}

@media only screen and  (max-width: 642px) {
.container .heading{
    width: 100%;
}
.container .heading h3{
    font-size: 2em;
}

}}

footer{
 color: white;
}
