html {
    box-sizing: border-box;
    font-size: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.logo {
    width: 120px;
}

a, a.featured {    
    &:hover {
        background-color: #060042;
        color: #ffffff;
    }
}

a {
    display: block;
    max-width: 400px;
    margin: 0 auto 15px auto;
    padding: 15px 20px;
    font-size: 0.85rem;
    color: #000000;
    border: 2px solid #000000;
    text-decoration: none;
    transition: all 200ms ease-in-out;
    
    &.featured {
        position: relative;
        background-color: #000000;
        color: #39f3f0;
        font-weight: bold;

        &:before {
            content: "";
            position: absolute;
            top: 2px;
            left: 2px;            
            width: calc(100% - 4px);
            height: calc(100% - 4px);
            border: 2px solid #39f3f0;
        }
    }
}

h2 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 2px;
}

.channels {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    
    a {
        flex: 1;
        padding: 5px 10px;
        margin-right: 10px;
        background-color: #39f3f0;
        border: none;

        &:last-child {
            margin-right: 0px;
        }

        &:hover {
            text-decoration: underline;
        }
    }
}