body{
    /*background-color: white;*/
    background-color: #0F0F0F;
    color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin:5 !important;
    transition-duration: 1s;
}
#content{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
}
#header{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    height: 1.6em;
    font-size: 1.2em;
}
#header p{
    margin-top: -7px;
}
#navBar{
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 0px;
    left: 0px;
}
#headerMenu a{
    border-left: solid white 2px;
    padding-left: 5px;
    padding-right: 5px;
    transition-duration: 0.3s;
    text-decoration: none;
    color: white;
}
#headerMenu a:hover{
    color: #550146;
}
.firstNav{
    border-left: none !important;
}
#logoHeader{
    display: flex;
    height: 1.3em;
    font-size: 1.3em;
}
#logoHeader p{
    padding-top: 8px;
    width: 100%;
}
#logoHeader img{
    height: 100%;
    width: auto;
}
#footer{
    width: 100%;
    height: 75px;
    background-color: rgba(0,0,0,0.8);
    display: flex; 
    justify-content: space-between;
}
#footer div{
    width: 20%;
    display: flex;
    justify-content: space-around;
}
#footer div img{
    width: 70px; height: auto;
    transition-duration: 1s;
}
#footer div img:hover{
    opacity: 0.5;
}
#affiliates{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    transition-duration: .25s;
    /*display: none;
    opacity: 0;*/
}
.affiliate{
    width: 15%;
    margin: 2%;
    display: flex;
    flex-direction: column;
    border: solid #550146 1px;
    border-radius: 5px;
    transition-duration: 1s;
}
.affiliate:hover{
    background-color:#550146;
}
.affiliate img{
    width: 80%;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
}
.affiliate p{
    width: 100%;
    text-align: center;
    font-size: 1.1em;
}

#detailedAffiliate{
    display: none;
    opacity: 0;
    justify-content: space-between;
    transition-duration: .25s;
}
#detailedAffiliate img{
    width: 30%;
    height: auto;
}
#detailedAffiliate div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#affilName{
    font-size: 1.5em;
}
#affilDesc{
    font-size: 1.1em;
}
#visitAffil{
    border-radius: 5px;
    height: 1.4em;
    font-size: 1.4em;
    background-color: #550146;
    border: solid #0F0F0F 2px;
    color: silver;
    transition-duration: .5s;
}
#cancelAffil{
    border-radius: 5px;
    height: 1.4em;
    font-size: 1.4em;
    background-color: silver;
    border: solid silver 2px;
    color: #550146;
    transition-duration: .5s;
}
#visitAffil:hover, #cancelAffil:hover{
    background-color: #0f0f0f;
    border: solid silver 2px;
    color: silver;
}

#redirects, #serviceDirects, #streamDirects{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#redirects a, #serviceDirects a, #streamDirects a{
    height: 100px;
    width: 30%;
    border-radius: 3px;
    border: solid black 3px;
    justify-content: center;
    text-align: center;
}

.hyperAff{
    width: 30vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-around;
}

.affLink{
    width: 100%;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3px;
    border: solid black 3px;
    justify-content: center;
    text-align: center;
    align-content: center;
    color: white;
    text-decoration: none !important;
    font-size: 1.5em;
    margin-bottom: 50px;
    transition-duration: 0.3s;
}

#serviceDirects a{
    color: white;
    text-decoration: none !important;
    font-size: 1.5em;
    text-align: center;
    align-content: center;
    transition-duration: 0.3s;
}

.affLink:hover, #serviceDirects a:hover{
    color: purple;
}

p a{
    color: gray;
    text-decoration: none;
}

@media (max-aspect-ratio: 1/1){
    #redirects, #serviceDirects, #streamDirects{
        flex-direction: column;
    }

    #redirects a, #serviceDirects a, #streamDirects a, .hyperAff{
        width: 100%;
        margin-bottom: 5px;
    }
    p{
        text-align: center;
    }
    #footer div{
        width: 10%;
        justify-content: space-between;
    }
    .footContent{
        width: 60% !important;
    }
    .affiliate{
        width: 30%;
    }
}