@import "tailwindcss";
@plugin "daisyui";

/* Resetting margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    color: white;
    padding: 2px 0;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: black;
}

.introduction {
    border: 5px solid #333; /* Border for the introduction */
    padding: 25px;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    justify-content: center;
}

.introduction img {
    margin-right: 20px;
}

.introduction h2 h3 {
    padding-left: 50px;
}
.introduction h2 {
    font-size: 50px;
}
.introduction h3 {
    font-size: 30px;
}

#introverticalimage {
    width: calc(100% / 6); /* Image takes up one sixth of the page */
}

#introwideimage {
    width: calc(120% / 2.1);
    height: calc(100%);
}

#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

@media (max-width: 750px) {
    #background-video {
        display: none;
    }
    body {
        background: url("https://assets.codepen.io/6093409/river.jpg") no-repeat;
        background-size: cover;
    }
}

.overlay {
    background-image: linear-gradient(to bottom right, #002f4b, #07114d);
    opacity: 100;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 99.9%;
    margin: 0;
    box-sizing: border-box;
    /* padding: 15% 32px; */
    line-height: 1.5;
    text-align: center;
    /* :last-child { margin-bottom: 0; } */
    h1 {
        font-size: 32pt;
        font-weight: bold;
        margin: 0 0 1em;
    }
    p {
        font-size: 11pt;
        margin: 1em 0;
    }
    a {
        color: #fff;
    }
}

.backgroundimagethingy {
    background-image: url(denim.png);
    background-repeat: repeat;
}

.maincontent {
    display: inline-block;
    /* CENTERED OR LEFT */
    text-align: center;
    vertical-align: middle;
    font-family: Arial, sans-serif; /* Set the font family for the main content */
    font-size: 16px; /* Set the default font size */
    line-height: 1.6; /* Set the line height for better readability */
    background-color: #090126;
    /* background-image: url("img/triangles_pattern.png");
   background-repeat:repeat; */
    /* text-shadow: white 0px 0px 10px; */

    width: 60%; /* Set the width of the main content */
    /* margin: 50px auto;*/ /* Center the main content horizontally and provide spacing from the top */
    /* margin: 50px 50px 0px 50px auto; */
    margin: auto;
    margin-top: 50px;
    padding: 20px; /* Add padding for spacing within the frame */
    border: 2px solid #ccc; /* Add border for frame appearance */
    border-radius: 5px; /* Add border radius for rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    display: inherit; /* MAY CAUSE ISSUES */
}

.maincontent p {
    margin-bottom: 20px; /* Add margin to paragraphs for spacing between them */
}

.maincontent img {
    /* width: 600px;
  height: 400px; */
    max-width: 100%;
    max-height: 100%;
}

.maincontent h1,
.maincontent h2,
.maincontent h3,
.maincontent h4,
.maincontent h5,
.maincontent h6 {
    font-weight: bold; /* Set font weight for headings */
    margin-top: 30px; /* Add margin to headings for spacing */
    margin-bottom: 15px; /* Add margin to headings for spacing */
}

.maincontent a {
    color: #007bff; /* Set link color */
    text-decoration: underline; /* Add underline to links */
}

.maincontent a:hover {
    color: #0056b3; /* Change link color on hover */
}

.maincontent ul,
.maincontent ol {
    margin-bottom: 20px; /* Add margin to lists for spacing */
    margin-left: 20px; /* Indent lists */
}

.maincontent ul li,
.maincontent ol li {
    margin-bottom: 5px; /* Add margin to list items for spacing */
}

.maincontent blockquote {
    margin: 0; /* Remove default margin for blockquote */
    padding: 10px 20px; /* Add padding to blockquote */
    background-color: #f9f9f9; /* Set background color for blockquote */
    border-left: 5px solid #ccc; /* Add left border to blockquote */
}

.maincontent code {
    font-family: Consolas, Monaco, "Andale Mono", "Courier New", monospace; /* Set font family for code */
    font-size: 14px; /* Set font size for code */
    background-color: #f8f9fa; /* Set background color for code */
    padding: 2px 4px; /* Add padding to code */
    border-radius: 4px; /* Add rounded corners to code */
}

.maincontent pre {
    font-family: Consolas, Monaco, "Andale Mono", "Courier New", monospace; /* Set font family for preformatted text */
    font-size: 14px; /* Set font size for preformatted text */
    background-color: #f8f9fa; /* Set background color for preformatted text */
    padding: 10px; /* Add padding to preformatted text */
    border-radius: 4px; /* Add rounded corners to preformatted text */
    overflow-x: auto; /* Add horizontal scrollbar when content overflows */
    white-space: pre-wrap; /* Wrap long lines */
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: #00022e;
    overflow: hidden;
    z-index: -1;
}
.background li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 36s linear infinite;
}

.background li:nth-child(0) {
    left: 76%;
    width: 192px;
    height: 192px;
    bottom: -192px;
    animation-delay: 1s;
}
.background li:nth-child(1) {
    left: 81%;
    width: 164px;
    height: 164px;
    bottom: -164px;
    animation-delay: 3s;
}
.background li:nth-child(2) {
    left: 24%;
    width: 174px;
    height: 174px;
    bottom: -174px;
    animation-delay: 7s;
}
.background li:nth-child(3) {
    left: 33%;
    width: 185px;
    height: 185px;
    bottom: -185px;
    animation-delay: 4s;
}
.background li:nth-child(4) {
    left: 19%;
    width: 177px;
    height: 177px;
    bottom: -177px;
    animation-delay: 19s;
}
.background li:nth-child(5) {
    left: 50%;
    width: 207px;
    height: 207px;
    bottom: -207px;
    animation-delay: 5s;
}
.background li:nth-child(6) {
    left: 66%;
    width: 181px;
    height: 181px;
    bottom: -181px;
    animation-delay: 26s;
}
.background li:nth-child(7) {
    left: 64%;
    width: 186px;
    height: 186px;
    bottom: -186px;
    animation-delay: 26s;
}
.background li:nth-child(8) {
    left: 76%;
    width: 181px;
    height: 181px;
    bottom: -181px;
    animation-delay: 39s;
}
.background li:nth-child(9) {
    left: 39%;
    width: 197px;
    height: 197px;
    bottom: -197px;
    animation-delay: 12s;
}
