:root {
    --base-clr: #324B50;
    --line-clr: #42434a;
    --hover-clr: rgba(149, 176, 182, 0.3);
    --text-clr: #e6e6ef;
    --accent-clr: #81cad9;
    --secondary-text-clr: #b0b3c1;
    --Tertiary-Color: #95b0b6; /* Light Greyish/Blue */
}
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Figtree', sans-serif;
    background-color: #ffffff;
    background-image: url(../assets/images/WebBackground2.png);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat-y;
    background-attachment: scroll;
    min-height: 100vh;
}
main {
    margin: 0 auto;
    margin-top: 6rem;
    width: 100%;
}
.tutorials-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.tutorials-header h1 {
    color: var(--base-clr);
    font-size: 3rem;
}
.tutorials-header p {
    color: var(--line-clr);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.iframe-container {
    display: flex;
    flex-direction: column; /* Stack the iframes vertically */
    justify-content: center; /* Center the iframes vertically (optional) */
    align-items: center; /* Center the iframes horizontally */
    width: 100%;
    gap: 2rem; /* Add spacing between the iframes */
}
iframe {
    width: 50%;
    height: 25rem;
    box-shadow: 0 0 10px var(--base-clr);
    margin-bottom: 1rem;
    border: none;
}
/* Mobile Styling */
@media (max-width: 768px) {
    /* General Body Adjustments */
    body {
        background-size: 100% auto; /* Adjust background size for mobile */
        background-position: top center; /* Center the background */
        overflow-x: hidden; /* Prevent horizontal scrolling */
        background-image: url(../assets/images/WebBackgroundLight.png);
    }

    main {
        margin-top: 6rem; /* Reduce top margin */
        padding: 1rem; /* Add padding for better spacing */
    }

    /* Tutorials Header */
    .tutorials-header h1 {
        font-size: 2rem; /* Reduce font size for smaller screens */
        margin-bottom: 1rem; /* Adjust spacing */
    }

    .tutorials-header p {
        font-size: 1rem; /* Adjust font size for better readability */
        margin-bottom: 1.5rem; /* Adjust spacing */
    }

    /* Iframe Container */
    .iframe-container {
        gap: 1.5rem; /* Reduce spacing between iframes */
    }

    iframe {
        width: 90%; /* Make the iframe take up most of the screen width */
        height: 15rem; /* Adjust height for smaller screens */
    }
}