* {
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
}

.logo {
    font-family: 'EB Garamond', serif;
    font-size: 38px;
    /* text-shadow: 1px 1px 1px black; */
    text-transform: uppercase;
    color: white;
    width: 85%;
    margin: 1.0% 5%;
    padding-bottom: 1.25%;
    border-bottom: 2px solid white;
}

.claim {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    text-align: right;
    /* text-shadow: 1px 1px 1px black; */
    color: white;
    margin: 0 5%;
    width: 85%;
}

.footer {
    position: fixed;
    bottom: 25px;
    left: 5%;
    z-index: 6;
    background-color: transparent;
    color: #FFFFFF;
}

.footer p {
	font-size: 16px;
	/* text-shadow: 1px 1px 2px black; */
}	

.footer a {
	color: #FFFFFF;
	text-decoration: none;
}	

.footer a:hover {
	color: #009ECE;
	text-decoration: underline;
}	

.toggler {
    
	/* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING :  */
    
    margin: 25px 25px 0 0;
	z-index: 99;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    opacity: 0;
}

.hamburger {
    position: absolute;
    margin: 25px 25px 0 0;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    padding: 0.6rem;

    /* FOR DISPLAYING EVERY ELEMENT IN THE CENTER : */

    display: flex;
    align-items: center;
    justify-content: center;
}

/* CREATING THE MIDDLE LINE OF THE HAMBURGER : */

.hamburger > div {
    position: relative;
    top: 0;
    right: 0;
    background: white;
    height: 2px;
    width: 60%;
    transition: all 0.4s ease;
}

/* CREATING THE TOP AND BOTTOM LINES : TOP AT -10PX ABOVE THE MIDDLE ONE AND BOTTOM ONE IS 10PX BELOW THE MIDDLE: */

.hamburger > div::before,
.hamburger > div::after {
    content: '';
    position: absolute;
    top: -10px;
    background: white;
    width: 100%;
    height: 2px;
    transition: all 0.4s ease;
}

.hamburger > div::after {
    top: 10px;
}

/* IF THE TOGGLER IS IN ITS CHECKED STATE, THEN SETTING THE BACKGROUND OF THE MIDDLE LAYER TO COMPLETE BLACK AND OPAQUE :  */

.toggler:checked + .hamburger > div {
    background: rgba(0,0,0,0);
}

.toggler:checked + .hamburger > div::before {
    top: 0;
    transform: rotate(45deg);
    background: black;
}

/* AND ROTATING THE TOP AND BOTTOM LINES :  */

.toggler:checked + .hamburger > div::after {
    top: 0;
    transform: rotate(135deg);
    background: black;
}

/* MAIN MENU WITH THE WHITE BACKGROUND AND THE TEXT :  */

.content {
	float: left;
    background-image: url("background.jpg");
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
	overflow: hidden;
}

.menu {
    background: white;
    box-shadow: -3px -3px 6px rgba(0, 0, 0, 0.5);
    float: right;
    width: 0;
    height: 100%;

    /* APPLYING TRANSITION TO THE MENU :  */

    transition: all 0.4s ease;
}

/* IF THE TOGGLER IS CHECKED, THEN INCREASE THE WIDTH OF THE MENU TO 30% , CREATING A SMOOTH EFFECT :  */

.toggler:checked ~ .menu {
    width: 30%;
}

.toggler:checked ~ .content {
    width: 70%;
}

/* STYLING THE LIST :  */

.menu >  div > ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    padding-left: 10px;

    /* HIDDEN INITIALLY  :  */

    visibility: hidden;
}

.menu > div > ul > li {
    list-style: none;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
}

.menu > div > ul > li > a {
    color: black;
    text-decoration: none;
    font-size: 1.5rem;
}

.menu > div > ul > li.menu-current > a {
    color: #009ECE;
    text-decoration: none;
    font-size: 1.5rem;
}

/* WHEN THE TOGGLER IS CHECKED, CHANGE THE VISIBILITY TO VISIBLE :  */

.toggler:checked ~ .menu > div > ul {
    transition: visibility 0.4s ease;
    transition-delay: 0.1s;
    visibility: visible;
}

.toggler:checked ~ .menu > div > ul > li > a:hover {
    color: #009ECE;
}
