@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0px;
    padding: 0px;

    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
}

body {
    background-color: #1e1e1e;
    width: 100vw;
    height: 100vh;

}

#upload-bar {
    width: 40vw;
    height: 35px;

    background-color: transparent;
    border: 2px solid rgb(30,144,255);
    border-radius: 10px;
    padding: 0px 10px;

    font-size: 95%;

    /* margin-bottom: 20px; */
    margin-right: 20px;

    outline: none;

    transition: 0.1s;
}

#upload-bar:focus {
    border-width: 4px;
}

.btn {
    background-color: transparent;
    border: 2px solid rgb(30,144,255);
    border-radius: 10px;
    padding: 5px;
    font-size: 110%;

    transition: font-size 0.5s, border-color 0.1s;
}

.btn:hover {
    font-size: 120%;
}

.btn:active {
    border-color: rgb(50,200,255);
}

#top-container {
    display: flex;

    justify-content: center;
    align-items: center;

    height: 10vh;
}

#main-section {
    padding: 10px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    overflow: hidden;
}

iframe { grid-area: video; }
a { grid-area: title; }
span { grid-area: count; }
button { grid-area: button; }
h3 {grid-area: nev;}

.music-box {
    width: 250px;
    border: 2px solid rgb(30,144,255);
    border-radius: 10px;
    padding: 10px;

    margin-right: 5px;
    margin-bottom: 5px;

    display: grid;
    grid-template:
    'video video'
    'title title'
    'nev nev'
    'count count'
    'button button';

    row-gap: 10px;
}

.music-box a,h3 { text-align: center; }
.music-box h3 { color: #d2d2d2; font-weight: 400; }
.music-box iframe{
    border: none;

    position: relative;
    left: 50%;
    transform: translate(-50%);
}