/* Imports from other sheets */
@import url(./mainStyle.css);

/* Content style */
#content {
    position: absolute;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto auto;
    justify-items: center;
    place-items: center;
    padding: 0;
    margin: 0;
    top: 150px;
    left: 0;
    width: 100vw;
    height: auto;
}

#tvDiv1 {
    display: flex;
    flex-direction: column;
    justify-items: center;
    place-items: center;
    background-color: rgb(51, 129, 106);
    grid-column: span 2;
    border-radius: 20px;
    padding: 30px 10px;
    margin-bottom: 50px;
    height: auto;
    width: 90%;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,1);
}

#tvDiv2 {
    background-color: rgb(51, 129, 106);
    border-radius: 20px;
    margin-bottom: 50px;
    height: auto;
    width: 80%;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,1);
}

#tvDiv3 {
    background-color: rgb(51, 129, 106);
    border-radius: 20px;
    margin-bottom: 50px;
    height: auto;
    width: 80%;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,1);
}

#tvDiv4 {
    background-color: rgb(51, 129, 106);
    border-radius: 20px;
    grid-column: span 2;
    margin-bottom: 50px;
    height: auto;
    width: 90%;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,1);
}

footer { grid-column: span 2; }

/* Page title style */
.pageTitle {
    margin: 0;
    padding: 0 5%;
    font-size: 28px;
    text-align: center;
}

/* Text */
.pageText {
    margin: 10px 0;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}
.pageLink {
    font-size: 20px;
    color: rgb(175, 175, 255);
}
.pageLink:hover {
    font-weight: 1000;
}

#tvDiv2 li, #tvDiv3 li, #tvDiv4 li { font-size: 20px; margin-bottom: 20px; padding-right: 20px; }

/* RESPONSIVENESS */
@media only screen and (max-width: 1200px) {
    #tvDiv2 { grid-column: span 2; width: 90%; }
    #tvDiv3 { grid-column: span 2; width: 90%; }
}

@media only screen and (max-width: 1200px) { .pageTitle { font-size: 30px; } }
@media only screen and (max-width: 600px) { .pageTitle { font-size: 26px; } }
@media only screen and (max-width: 400px) { .pageTitle { font-size: 24px; } }