


/* ****  DEVICE RESPONSIVENESS  ***** */

/* TVS/PROJECTORS | LANDSCAPE ////////// */
@media only screen and (min-width: 1201px) {
    .container {
        width: 85vw; /* Adjusted width for TVs/projectors */
        height: 85vh; /* Adjusted height for TVs/projectors */
        margin: 2vh auto; /* Center with a margin of 2vh */
    }
    .footer {
        padding-left: 0; /* Remove padding on larger screens */
    }
}

/* DESKTOP/LAPTOP | LANDSCAPE ////////// */
@media only screen and (min-width: 901px) and (max-width: 1200px) {
    .container {
        width: 85vw; /* 90% of viewport width */
        height: 85vh; /* 85% of viewport height */
        margin: 2vh auto; /* Center with a margin of 2vh */
    }
    .footer {
        padding-left: 0; /* Remove padding on larger screens */
    }
}

/* TABLET | PORTRAIT //////////////// */
@media only screen and (min-width: 601px) and (max-width: 900px) {
    .container {
        width: 80vw; /* 90% of viewport width */
        height: 80vh; /* 85% of viewport height */
        margin: 2vh auto; /* Center with a margin of 2vh */
    }
    .footer {
        padding-left: 0; /* Remove padding on tablets */
    }
}

/* TABLET | LANDSCAPE //////////////// */
@media only screen and (min-width: 300px) and (max-width: 601px) {
    .container {
        width: 85vw; /* 90% of viewport width */
        height: 88vh; /* 88% of viewport height */
        margin: 2vh auto; /* Center with a margin of 2vh */
    }
    .footer {
        padding-left: 0; /* Remove padding on tablets */
    }
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 768px) {
    .container-smg-table {
        width: 85%; /* Increase width by 5% */
        overflow-x: auto; /* Enable horizontal scrolling */
    }
}


/* ****  STYLE FRAMEWORK  ***** */



body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    width: 100%;
    background-color: #222222;
    color: #000000;
}

.container {
    position: relative;
    width: 80vw; /* 90% of viewport width */
    height: 85vh; /* 90% of viewport height */
    margin: 5vh auto; /* Center vertically with a margin of 5% of viewport height on top and bottom */
    background: linear-gradient(to bottom right, #eeeeee, #a3a3a3); /* Cube-like gradient */
    border-radius: 30px;
    padding:30px 30px 30px;
    overflow: auto;
}

.code-container {
    position: relative;
    width: 30%; 
    height: auto; 
    background-color: #333;
    overflow: auto;
    color: white; /* Set text color to white */
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto; /* Center the container horizontally */
    max-width: 60vw; /* Maximum width of the container */
    text-align: left;
}

.img-feat {

    border-radius: 20px;
	width: 80%; /* Image width is set to 80% of the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure proper rendering */
    margin: 0 auto; /* Center the image horizontally */
    
}

.container-smg-table {
    background-color: #fff; /* White background for the container */
    color: #000; /* Black text color */
    width: 80%;
    margin: auto;
    padding: 20px;
    border-radius: 25px; /* Rounded corners */
    overflow: auto; /* Ensures rounded corners are applied properly */
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #666; /* Dark gray border bottom for each row */
}

.row:first-child {
    background-color: #c0c0c0; /* Black background for the top row */
    border-radius: 10px;
}

.col {
    flex-basis: calc(100% / 6); /* Divide equally into 6 columns */
    text-align: center;
    padding: 10px;
    align-items: center;
    justify-content: center;

}






/* ****  FONTS AND STYLE  ***** */



.main p {
	text-align: justify;
	}

a {
    color:#5a5a5a;
    text-decoration: none; 
}

hr {
    width: 60%;
    margin: 0 auto;
    border-color: #5a5a5a;
}


/* ****  SECTIONS  ***** */





        
/* ****  FOOTER  ***** */

.footer {
width: 95%;
margin: 0 auto;
color: rgb(128, 128, 128);
padding: 0px;
text-align: center; 
top: calc(100vh - 25px); 
}



.footer p {
    margin: 0;
    text-align: center; 
}


.footer-link {
    color: #c4c4c4;
    text-decoration: none; 
}


/* ****  WIDGETS  ***** */


.datetime {
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    color: white;
    text-align: center; 
    margin: 0 auto; 
    padding-top: 0px;

}

    .button {
        width: 225px;
        height: 60px;
        display: auto;
        padding: 5px 10px;
        border-radius: 15px;
        background-color: #fff;
        color: #222;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    }
    
    .button:hover {
        background-color: #333;
        color: #fff;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }


/* ****  OTHER  ***** */

.roundpic img { 
border-radius: 50px; 
overflow: hidden; 
} 