/* Reset some default styles */
body, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    display: flex;
    font-family: Arial, sans-serif;
}

/* Side menu styles */
.side-menu {
    width: 250px;
    height: 150vh;
    background-color: #333;
  .blink_text
{
    animation:1s blinker linear infinite;
    -webkit-animation:1s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;
    color: red;
}

@-moz-keyframes blinker
{
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
 }  padding-top: 10px;
    position: fixed;
    left: 0;
    top: 0;
    padding-bottom: 20px;
}

.side-menu ul {
    padding: 0;
}

.side-menu li {
    padding: 10px;
    text-align: center;
}

.side-menu a {
    text-decoration: none;
    color: white;
    display: block;
    font-size: 17px;
}

.side-menu a:hover {
    background-color: #575757;
}

header {
    text-align: center;
    background-image: url('Images/pigbackground.jpg'); /* Replace with your image file */
    background-size: cover;
    background-blend-mode: luminosity ;
    background-position: center;
    /*color: rgb(154, 218, 226); */
    padding: 5px;
    width: calc(100% - 250px); /* Adjust width to account for the side menu */
    margin-left: 150px; /* Push header to the right */
    position: absolute;
    top: 0;
    left: 150px;
    height: 200px; /* Adjust height as needed */
    line-height: 100px; /* Center text vertically */
    z-index: 1000; /* Ensure it stays on top */
}
h1 {
    color: whitesmoke; /* Text color */
    font-size: xx-large
    padding: 80px; /* Adds space inside the h1 */
    text-align: center; /* Centers the text */
    border-radius: 10px; /* Optional: Rounds the corners */
}

main {
    margin-left: 270px;
    padding: 140px 20px 20px; /* Add padding to prevent content from being hidden under the fixed header */
}

main h2 {
    margin-top: 80px; /* Move the section header further down */
}

/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}


.strokeme {
    color: white;
    background-color: rgba(112, 126, 208, 0.712);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    text-align: left;
  }

.blink_text
{
    animation:1s blinker linear infinite;
    -webkit-animation:1s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;
    color: red;
}

@-moz-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker
{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
 }  
