/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');

:root {
    --bgColor: rgb(30, 30, 30);
    --accentColor: #00ff01;
    font-family: 'Karla', sans-serif;
    --landing-color-heading: rgba(255, 255, 255, .60);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


body {
    background-color: #151515;
    background-image: url('bg2.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: auto;
    background-attachment: fixed;
    margin: 0px;
    -webkit-user-select:none;
    -moz-user-select:-moz-none;
    -ms-user-select:none;
    user-select:none;
    z-index:0;
}


header {
    color: var(--accentColor);
    font-size: 20px;
    display: flex;
    align-items: center;
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 2.5%;
    background-color: transparent;
}


.nav_links {
    text-decoration: none;
}

.logo {
    height: 32px;
    cursor: pointer;
    z-index: 5;
    position: relative;
}

.cta {
    margin-left: auto;
    color: var(--accentColor);
    padding: 9px 25px;
    border-radius: .75rem;
    text-decoration: none;
    border: solid var(--accentColor) 1px;
    transition: all .25s cubic-bezier(.08, .59, .29, .99);
    z-index: 5;
    position: relative;
}

.cta:hover {
    background-color: var(--accentColor);
    color: var(--bgColor);
}


#userPhoto {
    z-index: 9999;
    display: block;
    margin: 0px auto 0px;
    padding-bottom: 32px;
    margin-top: -32px;
    position: relative;
    transition: all .5s;
    width: 112px;

    opacity: 0;
    animation-name: fadeInTop;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    z-index: 5;
}

.userPhoto_a {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 112px;
    transition: all .5s;
    z-index: 5;
    position: relative;
}

.userPhoto_a:hover {
    transform: scale(1.1)
}

#userName {
    z-index: 9999;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}


.links {
    z-index: 5;
    position: relative;
    width: 50%;
    display: block;
    margin: 27px auto;
}


/* Links */

.link-container {
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #00000000;
    transition: all .5s;
    border: 1px solid #00ff01;
    border-radius: .75rem;
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
    backdrop-filter: blur(5px);

    padding: 0.75rem;
    background-color: transparent;

    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    z-index: 5;
}

.link-container:hover {
    border: 1px solid #00000000;
    transform: scale(1.025);
    transition-delay: -.25s;
    background-color: #00ff01ee;
}

.link-text {

    display: contents;
    color: var(--accentColor);
    text-decoration: none;
    font-size: 25px;
    transition: all .5s;
}

.link-container:hover .link-text {
    display: block;
    text-align: center;
    color: #000000ee;
    transition-delay: -.25s;
}

.link-icon {
    display: block;
    height: 25px;
    z-index: 3;
    transition: all .5s;
    filter: none;
}

.link-container:hover .link-icon {
    filter: saturate(0%) brightness(0%);
    transition-delay: -.25s;
}

.link-container .link-icon {
    align-self: center;
}

.link-container .link-text {
    margin: 0;
    text-align: center;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 35px;
    margin-left: 10px;
}



.ppls-div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.ppl-headline {
    color: var(--accentColor);
    margin-bottom: 1rem;
    z-index: 5;
    position: relative;
}

.ppl-div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
}

.ppl-img-a {
    margin: .5rem;
    border: 1px solid var(--accentColor);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    transition: all .5s;
}

.ppl-img-a:hover {
    transition-delay: -.25s;
    transform:scale(110%);
}

.ppl-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.radio-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}
.radio {
    width: 400px;
    height: 192px;
    border: none;
    z-index: 5;
    position: relative;
}

#flood {
  z-index: 1 !important;
}



/* Copyright Text */

.copyright {
    color: #ffffff99;
    text-decoration: none;
}

.copyright_div {
    display: flex;
    justify-content: center;
    margin: 16px;
}


/* For Small Screens (Smartphones) */

@media only screen and (max-width: 800px) {
    #userPhoto {
        width: 60%;
        padding-top: 32px;
        padding-bottom: 1rem;
    }

    .links {
        width: 95%;
    }

    .link-text {
        font-size: 20px;
    }

    .link-icon {
        height: 20px;
    }

    #links {
        max-width: 85%;
    }

    header {
        flex-direction: column-reverse;
    }

    .cta {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 1%;
        padding-top: 1%;
        margin-bottom: 2rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .radio-wrapper-outer {
        width: calc(400px * 0.75);
        height: calc(192px * 0.75);
        overflow: hidden;
        flex: 0 0 auto;
        z-index: 5;
        position: relative;
    }
    .radio-wrapper-inner {
        transform: scale(0.75);
        transform-origin: top left;
    }
    .radio {
        width: 400px;
        height: 192px;
        border: none;
    }
}
