@keyframes SearchbarSlideIn {
    from {
        opacity: 0;
        bottom: -50%;
    }

    to {
        opacity: 1;
        bottom: -10%;
    }
}

html
{
    scroll-behavior: smooth;
}

body
{
    display: flex;

    background-color: hsl(0, 0%, 96%);

    font-family: Arial, Helvetica, sans-serif;

    width: 100%;

    flex-direction: column;

    margin: 0 auto;
}

#media-player
{
    display: none;
    position: fixed;

    background-color: hsl(0, 0%, 98%);
    box-shadow: 0px -1px 3px 1px hsl(220, 57%, 18%, 0.3);

    padding: 16px;

    width: 100%;
    height: 128px;

    left: 0;
    bottom: 0;

    z-index: 2;

    box-sizing: border-box;
}

#media-player button
{
    font-size: 25px;
    text-shadow: 0px 0px 1px black;
    background-color: transparent;

    border: none;
    outline: none;

    width: 32px;
    height: 32px;

    color: hsl(0, 0%, 15%);
}

#media-player.active
{
    display: inline-block;
}

#media-player #info
{
    display: flex;

    width: 256px;
    height: 100%;

    justify-content: center;
    align-items: center;
    
    float: left;
}

#media-player #control
{
    display: flex;

    width: calc(100% - 512px);
    height: 100%;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    float: left;

    color: hsl(0, 0%, 15%);
}

#media-player #control > div
{
    width: 100%;
    height: fit-content;
}

#media-player #title
{
    display: block;

    font-size: 28px;
    font-weight: 500;

    color: hsl(0, 0%, 15%);
}

#media-player #progress-bar
{
    width: 100%;
}

#media-player > #nav
{
    display: flex;

    width: 256px;
    height: 100%;

    justify-content: right;
    align-items: baseline;

    float: right;
}

#media-player #logo
{
    width: 140px;
}

#header
{
    background: linear-gradient(180deg, #FFFFFF00, #0000009a) bottom left, url('../img/bg.png') top left;
    background-size: cover;

    width: 100%;
    height: 512px;

    border-bottom: 1em solid hsl(220, 57%, 18%);
}

#header-navigation
{
    position: fixed;
    /* background-color: hsl(220, 57%, 18%); */

    width: 100%;
    height: 96px;

    top: 0;
    left: 0;

    z-index: 1;
}

#banner
{
    display: flex;
    position: relative;

    font-size: larger;
    font-weight: 400;

    top: 96px;

    width: 100%;
    height: calc(512px - 96px);

    justify-content: center;
    align-items: center;

    color:hsl(0, 0%, 98%);
}

#banner > span
{
    font-size: 2em;
    font-weight: 1000;

    width: 25ch;
    height: 10ch;
}

.center-content
{
    display: flex;

    width: 100%;
    height: 100%;

    justify-content: space-between;
    align-items: center;

    padding: 5px 20px;

    box-sizing: border-box;
}

.navigation ul
{
    display: flex;

    margin: 0;
    padding: 0;
}

.navigation ul li
{
    margin: 0px 0px 0px 10px;
    padding: 5px;

    box-sizing: border-box;
}

.navigation ul li a
{
    /* text-shadow: 0px 0px 5px hsl(0, 0%, 0%); */

    font-size: 1.2em;
    font-weight: 200;

    border: 0px solid transparent;

    padding: 5px;

    text-decoration: none;

    box-sizing: border-box;

    transition: border 100ms ease-out;

    color: hsl(0, 0%, 98%);
}

.navigation ul li:hover a:not(.active)
{
    border-bottom: 3px solid hsl(0, 0%, 98%);
}

.navigation ul li a.active
{
    background-color: hsl(0, 0%, 98%);

    font-weight: 500;
    text-shadow: none;

    padding: 15px;

    border-radius: 2px;

    box-sizing: border-box;

    color: hsl(0, 0%, 15%);
}

#search-block
{
    display: flex;
    position: relative;

    border-radius: 2px;
    background-color: hsl(0, 0%, 98%);

    width: fit-content;
    height: 86px;

    padding: 20px 32px 20px 0px;

    left: 50%;
    bottom: -10%;

    justify-content: center;
    align-items: center;

    transform: translateX(-50%);

    box-shadow: 0px 5px 5px 0px hsl(220, 57%, 18%, 0.3);

    animation: SearchbarSlideIn 275ms ease-in-out 100ms 1 forwards;

    box-sizing: border-box;
}

#search-block > span
{
    background-color: hsl(0, 0%, 98%);

    font-size: x-large;
    font-weight: 200;

    padding: 0px 24px;

    box-sizing: border-box;

    color: hsl(0, 0%, 15%);
}

#search-bar
{
    background-color: transparent;

    font-size: large;
    font-weight: 200;

    border: none;
    outline: none;

    width: 50ch;
    height: fit-content;

    padding: 5px;

    box-sizing: border-box;

    color: hsl(0, 0%, 15%);
}

#section
{
    display: flex;

    width: 100%;
    height: fit-content;

    margin: 64px 0px;

    flex-direction: column;

    align-items: center;

    color: hsl(0, 0%, 15%);
}

#section h2
{
    margin: 0;
}

.section-box
{ 
    background-color: hsl(0, 0%, 98%);

    min-width: 256px;
    width: 1028px;
    max-width: 1028px;

    height: 256px;

    margin-top: 1em;

    color: hsl(0, 0%, 15%);
}

.counter
{
    font-size: 4em;
    font-weight: 600;

    width: 50%;
    height: 100%;

    float: left;
}

.section-box > p
{
    font-size: 2.5em;
    font-weight: 200;

    width: 50%;
    height: 100%;

    margin: 0;
}

.center
{
    display: flex;

    justify-content: center;
    align-items: center;
}

.separated
{
    display: flex;

    background-color: transparent;

    justify-content: space-between;
    align-items: center;
}

.box
{
    background-color: hsl(0, 0%, 98%);

    width: 30%;
    min-height: 250px;

    padding: 16px;

    box-sizing: border-box;
}

.section-box.separated.logos .box
{
    display: flex;

    width: 250px;
    height: 250px;

    justify-content: center;
    align-items: center;
}

.section-box.separated.logos
{
    display: flex;

    flex-wrap: wrap;
    flex-flow: row;

    flex-basis: content;
}

.separate-text
{
    min-width: 256px;
    width: 1028px;
    max-width: 1028px;

    margin: 0;
}

.section-box.title
{
    background-color: transparent;

    min-width: 256px;
    width: 1028px;
    max-width: 1028px;

    height: fit-content;

    margin-top: 4.5em;
}

.section-box.title > h2
{
    font-size: 2.5em;

    padding: 0;
    margin: 0;

    color: hsl(0, 0%, 15%);
}

.box .radio-logo
{
    border: none;
    outline: none;

    width: 100%;
}