   
body {
   
    margin: 0 auto;
    max-width: 65%;
    padding: 0em 2em 0.5em;
    
 
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #93A5CF, #E4EFE9);
  font-family: 'Ropa Sans', sans-serif;

        
}


/* BASIC STYLING */

* {
    box-sizing: border-box;
}

.codepic {
    max-width: 60%;
}


input[type="radio"] {
    display: none;
}

.container {
    background: linear-gradient(to bottom, #B2BFDC, #E4EFE9);
    position: relative;
    height: 100vh;
    width: 100%;
    padding: 2em;
}

.slide-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 3em;
    width: 40%;
    height: 80%;
    border-radius: 20px;
    box-shadow: 0px 1px 2px 0px rgb(53, 53, 53);
    overflow: hidden;
}

/*  SLIDES IMAGES 'cubic-bezier' is A transition effect with variable speed from start to end:  */

#slide-roll {
    background: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    z-index: 100;
    transition: left .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    /* flex */
    display: flex;
}

.slide {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* backgrounds */

.slide-1 {
    background-image: url("../images/brycerock.png");
}

.slide-2 {
    background-image: url("../images/brycetree-lg.png");
}

.slide-3 {
    background-image: url("../images/kenning1-lg.png");
}

.slide-4 {
    background-image: url("../images/meeka1-lg.png");
}

/* RADIO BUTTONS */

.btn,
.btn::after {
    border-radius: 50%;
    transition: all .5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn {
    border: 1px solid rgba(0, 0, 0, 0.281);
    background: rgb(255, 255, 255);
    box-shadow: 0px 2px 2px rgba(56, 56, 56, 0.822);
    position: absolute;
    bottom: 12%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: scale(1.1);
    z-index: 1000;
}

.btn:nth-of-type(1) {
    left: 38%;
}

.btn:nth-of-type(2) {
    left: 45%;
}

.btn:nth-of-type(3) {
    left: 52%;
}

.btn:nth-of-type(4) {
    left: 59%;
}

.btn:hover {
    transform: scale(1.4);
}

/* buttons Atom! */

.btn::after {
    content: "";
    display: inline-block;
    border: 1px solid white;
    background: rgb(11, 185, 238);
    width: 20px;
    height: 20px;
    margin: 3px 3px;
    transform: scale(.5, .5);
    box-shadow: 0px 1px 5px rgba(56, 56, 56, 0.822);
}

/* LOGIC OPTIONS - funtion of slides, and allows buttons 'labels' to function via radio buttons*/

/* slide function logic */

input[type="radio"]:checked#slide-2-trigger~div.slide-wrapper>div#slide-roll {
    left: -100%;
}

input[type="radio"]:checked#slide-3-trigger~div.slide-wrapper>div#slide-roll {
    left: -200%;
}

input[type="radio"]:checked#slide-4-trigger~div.slide-wrapper>div#slide-roll {
    left: -300%;
}

/* button function logic */

input[type="radio"]:checked+label.btn {
    transform: scale(1.2);
    border: 1px solid rgba(53, 53, 53, 0.308);
}

input[type="radio"]:checked+label.btn::after {
    transform: scale(1.1, 1.1);
    background: lightskyblue;
}

/*=====================================================================================
                MEDIA QUERIES
=======================================================================================*/

@media only screen and (max-width: 750px) {
    .slide-wrapper {
        width: 90%;
        height: 100%;
    }
    .btn:nth-of-type(1) {
        left: 93%;
        bottom: 60%;
    }
    .btn:nth-of-type(2) {
        left: 93%;
        bottom: 50%;
    }
    .btn:nth-of-type(3) {
        left: 93%;
        bottom: 40%;
    }
    .btn:nth-of-type(4) {
        left: 93%;
        bottom: 30%;
    }
}

@media only screen and (max-width: 450px) {
    .btn:nth-of-type(1) {
        left: 91%;
    }
    .btn:nth-of-type(2) {
        left: 91%;
    }
    .btn:nth-of-type(3) {
        left: 91%;
    }
    .btn:nth-of-type(4) {
        left: 91%;
    }
}

/*  SLIDER CONTAINER END */


div.padded {
  padding-top: 2%;
  padding-right: 3%;
  padding-bottom: 3%;
  padding-left: 3%;
}

div.headfoot {
  padding-top: 1%;
  padding-right: 3%;
  padding-bottom: 1%;
  padding-left: 3%;
}


/*section boarders*/

div.solidborder {border-style: solid;}

div.noborder {
    
    border-left-style: solid;
    border-right-style: solid;
}



/* site sections background colours*/

#division1 {
    
  background-color: #F49AD0;
     
}

.division2 {
    
  background-color: #F6ACD8;
     
}

#division3 {
    
  background-color: #F49AD0;
     
}

#header {
    
  background-color: #ED55AF; 
    
}


#title {
    
    background-color: #b3cccc;
    
}


#footer {
    
    background-color: #ED55AF;
    
}




