body {
    background-color: black;
    color: silver;
}


* {
    outline: none;
}

a {
    text-decoration: none;
}

a:link, :visited {
    color: silver;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.FOC_IMG { 
    border-radius: 20px;    
}

button {
    border-radius: 5px;
}

h3 {
    font-size: 72px;
}

.dadClips {
    overflow: scroll;
    display: flex;
    flex-direction: row;
    width: 100%;
    /* background-color: yellow; */
}

iframe {
    border-radius: 20px;
    border: solid gray;
}

.vids {
    width: 250px;
    height: 200px;
    /* border: solid ; */
    border-top: solid 1px rgb(51, 51, 51);
    border-right: solid 1px rgb(51, 51, 51);
}

h4 {
    text-align: center;
}



/* MEDIA QUERY *********************************************************************************** */

@media only screen and (max-width: 640px) {
    
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }
    
    .FOC_IMG {
        width: 100%;
        border-radius: 20px;
    }
    
    nav {
        flex-direction: column;        
    }
    
    audio {
        margin-top: 10px;
    }
    
    button {
        background: black;
        color: silver;
        border: solid silver 1px;
    }
    
    
        .dadClips {
            width: 100%;
        }

        iframe {
            width: 100%;
        }
        
}