* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: white;
}

body {

    background-color: #f4f4f4
}


.container {

    width: 100%;
    height: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;

}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vh 10vw;
    /* border: 2px red solid; */
}

main section {

    background-color: white;
    margin: 20px 0;
    padding: 20px;
    width: 80%;
    height: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

main section h2 {
    margin-bottom: 2vh;

}

button {
    background-color: #5c48ee;;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px
}

button:hover {
    background-color:#412af4;
}

table {
    width: 100%;
    border-collapse: collapse;
    height: 25vh;

}


th,
td {
    border: 1px solid #ddd;
    text-align: left
}

td:nth-child(1),
th:nth-child(1) {
    background-color: #878484
}

td:nth-child(2),
th:nth-child(2) {
    background-color: #c6c1c1
}

th:last-child,
td:last-child {
    background-color: #95acb1
}

th {
    background-color: #f2f2f2
}

#comparison {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 10px;
    text-align: center;
    width: 90%;
}

#comparison h2 {
    margin: 2vh 0;
}


footer {
    background-color: white;
    margin: 20px 0;
    padding: 20px;
    width: 98%;
    height: auto;
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-left: 1%;


    /* position: relative; */
    margin-top: 2%;
    line-height: 180%;
    font-size: 2em;
    /* height: auto; */
    /* background-color: #ffffff; */
    color: #5c48ee;
    /* text-align: center; */
    /* padding: 5vh 0; */
    overflow: hidden;
}


.material-symbols-outlined {
    color: #F7DC6F;
    /* yellow color */
    text-shadow: 0px 0px 15px rgb(241, 189, 12);
    /* glowing effect */
}

@media screen and (max-width:480px) {
    .section {
        font-size: small;
        padding: 2px;
        min-height: 30vh;
    }


    .big-screens {
        display: none;
    }

    nav ul li img {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top bottom;
    }

    nav ul li ul {
        /* position: static; */
        width: 100%;
    }

    main>section {
        width: 100%;
        height: auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    main {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    table {
        width: 100%;
        margin: 0;

    }

    #comparison {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        background-color: white;
        border-radius: 10px;
        text-align: center;
        width: 100%;
        padding: 2vh 1vw;
        margin: 0;
    }

    footer {

        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        font-size: small;
        width: 100%;
        height: auto;
        position: relative;
    }



    .footer-img>img {
        left: 170px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

}