html {
    box-sizing: border-box;
    font-size: 100%
}

*,
:after,
:before {
    box-sizing: inherit
}

body {
    background-color: #060042;
    background-image: linear-gradient(#060042 2%, #20a39e 108%);
    color: #fff;
    min-height: 100vh;
    text-align: center;
    font-family: Roboto, sans-serif
}

.logo {
    width: 240px;
    background-position: center;
    border-radius: 50%;
}

a.featured:hover,
a:hover {
    background-color: #060042;
    color: #fff
}

a {
    display: block;
    max-width: 400px;
    margin: 0 auto 15px;
    padding: 15px 20px;
    font-size: .85rem;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    transition: all .2s ease-in-out
}

a.featured {
    position: relative;
    background-color: #fff;
    color: #060042;
    font-weight: 700
}

a.featured:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #060042
}

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: #060042;
    border: none
}

.channels a:last-child {
    margin-right: 0
}

.channels a:hover {
    text-decoration: underline
}

.bouncy{
    animation:bouncy 5s infinite linear;
    position:relative;
    }
    @keyframes bouncy {
    0%{top:0em}
    40%{top:0em}
    43%{top:-0.9em}
    46%{top:0em}
    48%{top:-0.4em}
    50%{top:0em}
    100%{top:0em;}
    }

.btn-lg {
	position: relative;
	top: 0;
	left: 0;
	-webkit-transition: top 0.1s ease, left 0.1s ease;
	-moz-transition: top 0.1s ease, left 0.1s ease;
	-o-transition: top 0.1s ease, left 0.1s ease;
	transition: top 0.1s ease, left 0.1s ease;
}
.btn-lg:hover {
	top: 2px;
	left: 2px;
    background-color: #23e7dd;
}



