body {
    font-family: Arial, sans-serif;
    background-color: #ffe6f2;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    
}

h1 {
    margin: 0;
    color: #ff66b2;
}

/* Hide default checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger menu icon */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

/* Social links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    background: #ff99cc;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff66b2;
}

/* Responsive styles */
@media (max-width: 800px) {
    .menu-icon {
        display: block;
    }
    
    .social-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 10px;
        background: #ff99cc;
        padding: 10px;
        border-radius: 10px;
        width: 150px;
    }



    .social-links a {
        display: block;
        text-align: center;
        margin: 5px 0;
    }
}

/* CSS File: styles.css */
body, h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

.w3-row-padding img {
    margin-bottom: 12px;
}

.bgimg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100%;
}

img{
    height: 70%;
    width: 70%;
    border: solid 5px rgb(250, 156, 206);
    border-radius: 10px;
}

.w3-sidebar {
    width: 40%;
}

