/* Global */
*{
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 98vw;
    height: 100vh;
    background: linear-gradient(
      rgba(101, 143, 47, 0.95), 
      rgba(71, 121, 28, 0.65)
    ), url(./Images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    cursor: url(./Images/Rento\ Cursor.png), default;
}

.down-arrow {
    width: 10%;
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -4%;

}

.down-arrow span{
    transform: rotate(90deg);
    font-size: 600%;
}

.down-arrow span a{
    color: #d6ff08;
    text-decoration: none;
}

/* Header */

header {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 3%;
}

h1 {
    text-align: center;
    padding: 0;
    text-decoration: underline;
    font-family: 'Sigmar One', cursive;
    font-size: 450%;
    background: -webkit-linear-gradient(#d6ff08, #7daf21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Home */

/* .fa-home {
    color: #FFA908;
    text-align: left;
    padding-right: 20%;
    position: fixed;
} */

/* Countdown Timer */

.countdown-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -8%;
    color: whitesmoke;
    font-family: 'Raleway', sans-serif;
}

.Rento-change {
    color: #FFA908; 
}
/* Table */

main {
    border: 0px solid green;
    width: 100%;
    height: 200vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1%;
}

#league-table{
    width: 60%;
    height: 60vh;
    padding: 0;
    padding-bottom: 4%;
}

.l-table {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
}

.l-table,table,th,tr,td {
    background: -webkit-linear-gradient(#afda6ab9, #3eb11bd3);
    border: 2px solid ;
    border-radius: 2%;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    color: whitesmoke;
}

.total {
    background: -webkit-linear-gradient(#FFA908, #F96D01);
    border-top-right-radius: 7%;
    border-bottom-right-radius: 7%;
}

.col1 {
    border-top-left-radius: 7%;
    border-bottom-left-radius: 7%;
}

.dashed {
    border-bottom: 4px dashed #d6ff08;
    border-radius: 0%;
}

/* Fixture Table */

.fixtures-heading {
    padding: 0;
    margin-top: 5%;
    font-family: 'Sigmar One', cursive;
    font-size: 300%;
    background: -webkit-linear-gradient(#d6ff08, #7daf21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#fixtures-table {
    border: 0px solid pink;
    border-radius: 7%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.f-table {
    width: 60%;
    height: 50vh;
}

.fixtures-color-change{
    background: -webkit-linear-gradient(#FFA908, #F96D01);
}

.fixture-select-design {
    font-family: 'Raleway', sans-serif;
    width: 25%;
    border: whitesmoke solid 2px;
    border-radius: 7%;
    margin-top: 2%;
    margin-bottom: 2%;
    background:  #FFA908;
    color: whitesmoke;
    overflow: hidden;
}

option {
    overflow: auto;
    border-bottom: solid #d6ff08 1px;
    
}


/* Footer */

footer {
    height: 20vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

p {
    color: whitesmoke;
    font-family: 'Raleway', sans-serif;
    margin-left: 5px;
    padding: 0;
}

.external-link {
    color: #d6ff08;
    font-family: 'Raleway', sans-serif;
}

/* Media Queries */

@media only screen and (min-width: 200px) {
    .fixtures-heading{
        font-size: 100%;
    }
    .fixture-select-design {
        font-size: 8px;
    }
    h1 {
        font-size: 110%;
        margin: auto 0;
    }
    h2 {
        font-size: 85%;
    }
    th {
        font-size: 70%;
    }
    td {
        font-size: 80%;
    }
    .down-arrow span {
        font-size: 290%;

    }
}

@media only screen and (min-width: 500px) {
    .fixtures-heading{
        font-size: 180%;
    }
    .fixture-select-design {
        font-size: 12px;
    }
    h1 {
        font-size: 200%;
    }
    th {
        font-size: 80%;
    }
    td {
        font-size: 90%;
    }
    .down-arrow span {
        font-size: 400%;
    }
}

@media only screen and (min-width: 767px) {
    .fixtures-heading{
        font-size: 250%;
    }
    h1 {
        font-size: 250%;
    }
    th {
        font-size: 100%;
    }
    td {
        font-size: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .fixtures-heading{
        font-size: 280%;
    }
    .fixture-select-design {
        font-size: 18px;
    }
    h1 {
        font-size: 300%;
    }
    th {
        font-size: 130%;
    }
    td {
        font-size: 110%;
    }
    .down-arrow span {
        font-size: 600%;
    }
}