html {
    box-sizing:border-box;
    font-size:100%
}
*,  :after,:before {
    box-sizing:inherit
}

body {
    background-image:linear-gradient(#0E0E0C 2%,rgb(16, 57, 80) 108%);
    min-height:100vh;
    text-align:center;
    color: aliceblue;
    font-family:Roboto,sans-serif
}

.logo-round {
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px
}

.logo-round-corners {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px
}

a.featured:hover,a:hover {
    background-color:#2D3AAF;
    color:rgb(255, 255, 255)
}

a {
    display:block;
    max-width:400px;
    margin:0 auto 15px;
    padding:15px 20px;
    font-size:.85rem;
    color:rgb(255, 255, 255);
    border:2px round rgb(255, 255, 255);
    border-radius: 15px;
    text-decoration:none;
    transition:all .2s ease-in-out
}

a.featured {
    position:relative;
    background-color:rgba(255, 255, 255, 0.5);
    color:rgb(255, 255, 255);
    font-weight:700
}

a.featured:before {
    content:"";
    position:absolute;
    top:2px;
    left:2px;
    width:calc(90% - 4px);
    height:calc(90% - 4px);
    border:15px round rgb(175, 45, 95)
}

h2 {
    font-size:14px;
    text-transform:uppercase;
    font-weight:400;
    letter-spacing:2px
}

.channels {
    display:flex;
    max-width:400px;
    margin:0 auto
}

.channels a {
    flex:1;
    padding:5px 10px;
    margin-right:10px;
    background-color:#2D3AAF;
    border:none
}

.channels a:last-child {
    margin-right:0
}

.channels a:hover {
    text-decoration:underline
}

#cookie-popup { 
    text-align: center; 
    background: rgb(0, 0, 0);
    position: fixed;
    top: 0px; 
    left: 0;
    right: 0;
    z-index: 9999;
    font-size:14px; 
    line-height:20px;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    }
   
  #cookie-popup.hidden {
    display: none;
  }