/* 
 * Owner: Photographic Alliance of Great Britain
 * Description: Cascading Style Sheet
 * Date Created: 23rd August 2026
 * 
 */

:root {
    --color1: rgba(50,50,100,0.9);   /*dark blue*/
    --color2: rgba(200,200,250,1);   /*very light grey blue*/
    --color3: rgba(255,255,255,1);   /*White*/
    --color4: rgba(150,150,255,1);   /*light blue*/
    --color5: rgba(40,40,180,1);     /*blue*/
    --color6: rgba(200,100,100,1);   /*Darkred*/
}

::-webkit-scrollbar {display: none;}

/*Basic HTML Adjustments*/
body {
    height:100%;
    width:100%;
    overflow:hidden;
    font-size: clamp(0.8em, 1.75vh, 1em);
    background-image: url(../images/pagb-logo-5.png);
    background-repeat: no-repeat;
    background-position: 140%;
    background-size: 75%;
    background-color:var(--color3);
}

.row {padding-top:1vh;}
.label {
    padding-top:1vh;
    font-weight:bold;
    color:var(--color4);

}
footer {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
}

.logo {
   max-width:100%;
   max-height:12vh;
}

.banner {
    font-size:2.2vw;
    text-shadow:2px 2px var(--color2);
    color: var(--color1);
}

.bannertext {
    font-size:1.2vw;
    color: var(--color1);    
}