@import url(https://fontawesome.com/v5.15/icons/qrcode?style=solid);

body {
    font-family: 'Roboto', sans-serif;
    background-image:url(../IMAGES/stock.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    transition: all .5s ease; 
}



#check {
    display: none;
}

label #btn,label #cancel {
    position: absolute;
    cursor: pointer;
    background:lightblue;
    border-radius: 3px;
    padding: 6px 12px;
}

label #btn {
    left:40px;
    top: 25px;
    font-size: 35px;
    color:white;
    transition: all .5s ease;
}

label #cancel {
    z-index: 1111;
    left: -195px;
    top: 10px;
    font-size: 30px;
    color:black;
    padding: 4px 9px;
    transition: all .5s ease;
}

#check:checked ~ .sidebar {
    left: 0;
}

#check:checked ~ label #btn {
    left: 250px;
    opacity: 0;
    pointer-events:none ;
}

#check:checked ~ label #cancel {
    left: 195px;
}

#check:checked ~ section{
    margin-left: 250px;
}


.nav-bar img {
    clip-path: circle();
}

img {
    clip-path:ellipse();
}

.centre {
    clip-path: none;
}
article {
    padding:25px 35px;
    color:seashell;
    display: inline-block;
    margin: 35px 0;
    border-radius: 20px;
    text-align:center;
    
}

.yoh {
    padding:15px 20px;
    text-decoration: none;
    font-weight: bold;
    color:seashell;
    display: inline-block;
    margin: 35px 15px;
    border-radius: 5px;
    text-align:start;
}

p {
    color: seashell;
    text-align: center;
    font-size: larger;
}

.massagebody {
    text-align:center;
    margin:auto;
    color: gainsboro;
    
}

.massagebody b{
    color:bisque;
}

.massagebody h3 {
    color:seashell;
    text-decoration:overline;
}

.massagebody h4{
    color: seashell;
    text-decoration: overline;
}

.massagebody a{
    color: lightblue;
}

.massagebody span{
    color:mistyrose;
}

.socialmedia {
    text-align: center;
}

.socialmedia a {
    padding: 20px;
    font-weight: bold;
    color: dodgerblue;
}

/* CSS for smaller devices */

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #333;
    transition: 0.3s;
    overflow-y: auto;
}

.sidebar header {
    color: #fff;
    font-size: 1.5rem;
    padding: 20px;
    text-align: center;
}

.sidebar ul {
    padding: 0;
    list-style-type: none;
}

.sidebar ul li {
    padding: 15px;
    border-bottom: 1px solid #444;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

/* Main content styles */
section {
    margin-left: 250px;
    padding: 20px;
}

/* Media query for smaller devices */
@media screen and (max-width: 768px) {
    .sidebar {
        left: -100%;
    }
    
    section {
        margin-left: 0;
    }
}
