/*
    Theme Name: theBotBTV Theme
    Theme URI: https://wordpress.org/
    Author: richroks
    Author URI: https://wordpress.org/
    Description: Custom Theme for name
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: gamer, streamer, kids, youtube
    Text Domain: thebotbtvtheme
*/

/* General */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #47bae1;
}

.accent-font {
    font-family: 'Caveat', cursive;
}

.bg-container {
    background-image: linear-gradient(135deg, #47bae1 0%, #48cff5 100%);
    overflow: hidden;
    height: 1600px;
    width: 100%;
    position: absolute;
}

.sunburst-bg-container {
    position: absolute;
    top: -100%;
    bottom: -100%;
    left: -100%;
    right: -100%;
    z-index: 1;
}

.sunburst-bg {
    background-image: url('assets/images/sunburst.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    -webkit-animation: spin 24s linear infinite;
    -moz-animation: spin 24s linear infinite;
    animation: spin 24s linear infinite;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@media screen and (max-width: 770px) {
    body {
        padding-bottom: 8px;
    }

    .bg-container {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 660px) {
    .bg-container {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 550px) {
    .bg-container {
        padding-bottom: 110px;
    }

    html, body {
        font-size: 1.2em;
    }
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    position: relative;
    z-index: 99;
}

.botbtv-logo {
    height: auto;
    max-width: 350px;
}

.botbtv-logo img {
    height: auto;
    width: 100%;
}

.welcome-txt {
    color: white;
    position: relative;
    z-index: 99;
    text-align: center;
    margin: 0 auto;
    padding: 30px 30px 200px;
    max-width: 790px;
}

span.fun {
    color:#efd750;
    font-weight: 700;
    font-size: 1.3em;
    padding-right: 8px;
}

.cta-container {
    position: relative;
    z-index: 99;
    text-align: center;
}

a.social-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50rem;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1.5;
    padding: 0.75rem 2rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 20px;
}

.youtube-btn {
    background-color: #f30000;
    border-color: #f30000;
}

a.youtube-btn:hover {
    background-color: #F76363;
    border-color: #F76363;
}

.twitch-btn {
    background-color: #6441a5;
    border-color: #6441a5;
}

a.twitch-btn:hover {
    background-color: #7D5EB8;
    border-color: #7D5EB8;
}

.facebook-btn {
    background-color: #4267B2;
    border-color: #4267B2;
}

a.facebook-btn:hover {
    background-color: #6081C2;
    border-color: #6081C2;
}

.videoembed iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 550px;
  }

.copyright {
    font-size: .4em;
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 99;
    bottom: 0;
    right: 0;
    left: 0;
}

@media screen and (max-width: 550px) {
    .botbtv-logo {
        max-width: 300px;
    }

    .welcome-txt {
        padding: 30px 30px 300px;
    }

    .copyright {
        font-size: .6em;
    }
}