:root {
    --bg-color: 155, 34, 66;
    --text-color: white;
}

body {
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    padding: 0;
    margin: 0;
}
h1 {
    font-size: 36px;
    padding: 0;
}
a {
    text-decoration: none;
    color: unset;;
}
main {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    min-width: 320px;
}
#background {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0)
        ),
        url("./golden-retriever-dog-1364426710r9x.jpg");
    background-size: 50% 25%; 
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    min-width: 320px;
    top: 0;
    bottom:0;
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}
#header {
    color: rgb(var(--bg-color));
}
#content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    color: var(--text-color);
    margin: 3rem;
}
.row {
    display:grid;
    grid-template-columns: 1fr 2fr 6fr 3fr;
    gap: 16px;

    background-color: rgba(var(--bg-color), 0.9); 
    color: var(--text-color);
    border: 1px solid #D4A017;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;

    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    color: var(--text-color);
}
.read div {
    opacity:0.3;
}
.row:hover {
    transform: scale(1.02);
}
.bloggerHeading {
    color: rgba(255, 105, 180, 0.9); 
}
#toggler {
    margin-left: 3rem;
    width: 6rem;
    height: 2rem;
    font-size: 0.9rem;
    padding: 0rem;
    background-color: rgba(255, 105, 180, 0.9);
    outline: none;
    border: 1px solid white;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;}
#toggler:hover {
    background-color: rgba(255, 105, 180, 1); /* Darken the background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow for a "lifting" effect */
}

