@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab&display=swap');
:root { 
  --first-color: #F5F5DC;
  --back-color: #2c523b;
  --sudo-color: #8aff7d;
  --second-color: #9ea3f5;
  --secondsudo-color: rgba(147, 151, 229, 0.785);
  --background-color: #F3EAD3;
  --box-color: #F3EAD3;
  --nav-color: #50A060;
  --background-color1: #28282B;
  --third-color: #2e2e33;
  --text-color: #28282B;
  --black-color: #222;
  --transition-duration: 0.2s;
  --glass-white: rgba(255, 255, 255, 0.2);
  --glass-whiter: rgba(255, 255, 255, 0.6);
  --glass-black: rgba(0,0,0,0.2);
  --glass-blacker: rgba(0,0,0,0.3);
  --glass-second: rgba(147, 151, 229, 0.4);
  --box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}

body{
    background-image: url(../../asset/astitbaaBG3.png);
    background-position: center center;
    background-repeat: none;
    background-size: cover;
    background-attachment: fixed;
}

#pictures > a >  img{
    border: 2px solid var(--first-color);
}

.heading{
    position: relative;
    top : 50px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    font-weight: 300;
    color: var(--first-color);
    font-size: clamp(24px, 3.1vw, 38px);
}

.sub-heading{
    position: relative;
    top : 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    padding: 10px;
    text-align: center;
    font-weight: 300;
    color: var(--first-color);
    font-size: clamp(16px, 1.1vw, 22px);
}

.campaigns{
    position: relative;
    width: 100%;
    height: fit-content;
    min-height: 800px;
    top: 100px;
    padding: 20px 20px 200px 20px;
}

.campaigns-name{
    position: relative;
    top : 30px;
    width: fit-content;
    font-weight: 300;
    color: var(--first-color);
    font-size: clamp(20px, 3.1vw, 34px);
}
.campaigns-date{
    position: relative;
    top : 40px;
    width: fit-content;
    height: fit-content;
    font-weight: 300;
    color: var(--first-color);
    font-size: clamp(16px, 1.1vw, 22px);
}

.campaigns-about{
    position: relative;
    top : 60px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    font-weight: 300;
    color: var(--first-color);
    font-size: clamp(16px, 1.1vw, 22px);
}

.campaigns-photos{
    columns: 3 250px;
    gap: 15px;
    top: 90px;
    position: relative;
}

.campaigns-photos > a > img{
    margin-bottom: 10px;
    border-radius: 5px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.second_campaigns_img{
    margin-bottom: 10px;
    border-radius: 5px;
    width: 90%;
    max-width: 900px;
    height: auto;
    top: 80px;
    object-fit: contain;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}



.heading::before,
.campaigns-name::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--first-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -1px;
    transition: all ease 0.4s;
}

.heading:hover:before,
.campaigns-name:hover:before{
    width: 100%;
}
