/* Global Styling */
body {
    background-image: linear-gradient(black,grey);
    color: white;
}

/* h1 Styling */
h1 {
    text-decoration: double underline orangered;
}

/* Traffic Class */
.traffic, .game {
    font-size: 20px;
    text-decoration: none;
}

/* Common Styles for Fiverr, RJ-Living, Facebook, Recipe, Periodic-Table */
.fiverr, .rj-living, .facebook, .recipe ,.table
{
    font-size: 20px;
    text-decoration: none;
    padding-left: 40px;
    padding-bottom: 30px;
    padding-top: 30px;
}
/* Assignments2 Class */
.Assignments2{
    display: flex;
    padding-left: 500px;
    max-width: 100%;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}
/* Assignments Class */
.Assignments {
    display: flex;
    padding-left: 100px;
    max-width: 100%;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}
/* Responsive Styling */
@media only screen and (max-width: 1200px) {
    .Assignments2 {
        padding-left: 100px;
    }
}
@media only screen and (max-width: 768px) {
    .traffic, .game {
        font-size: 18px;
        padding-left: 20px;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .Assignments2 {
        padding-left: 50px;
        flex-direction: column; /* Stacks items vertically on smaller screens */
    }
}
@media only screen and (max-width: 480px) {
    .traffic, .game{
        font-size: 16px;
        padding-left: 10px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .Assignments2 {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
    }
}


/* Responsive Styling */
@media only screen and (max-width: 1200px) {
    .Assignments {
        padding-left: 100px;
    }
}

@media only screen and (max-width: 768px) {
    .fiverr, .rj-living, .facebook, .recipe, .table {
        font-size: 18px;
        padding-left: 20px;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .Assignments {
        padding-left: 50px;
        flex-direction: column; /* Stacks items vertically on smaller screens */
    }
}

@media only screen and (max-width: 480px) {
    .fiverr, .rj-living, .facebook, .recipe, .table{
        font-size: 16px;
        padding-left: 10px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .Assignments {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
    }
}
