* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    width: 100%;
    border: 1px solid hsl(197, 30.4%, 50.2%);
    background-color: hsl(197, 30.4%, 50.2%);
    padding-top: 0.1%;
    padding-bottom: 0.1%;
} 

#container button {
    margin-right: 0%;
    height: 12vh;
    width: 24.9vw;
    border: 0px solid hsl(197 30.7% 15.3%);
    background-color: hsl(0, 0%, 12%);
}

#container button:hover {
    margin-right: 0%;
    height: 12vh;
    width: 24.9vw;
    border: 1px solid hsl(197 30.7% 15.3%);
    background-color: hsl(197, 30.4%, 20%);
    transition: background-color 0.35s;
}

#followFeed aside {
    width: 15vw;
    padding: 1.5vw;
    min-height:800px;
    background-color: hsl(0, 0%, 12%);
    display: inline-block;
    border-left: 1px solid hsl(197, 30.4%, 50.2%);

}

#followFeed img {
    width:4vw;
    border-radius:4vw;
    position:relative;
    top:3vh;
}

#followFeed p {
    padding-bottom: 9vh;
    overflow:hidden;
    padding:3vh;
}

#followFeed p:hover{
    background-color: hsl(0, 0%, 18%);
    border: 0px solid black;
    border-radius: 3vh;
    transition: background-color 0.35s;
}

.videoFeed {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: 40vh 40vh 40vh;
    gap: 1vw;

}
.videoFeed a{
    width: 25vw;
    height: 20vh;
    padding: 2vw;
    text-decoration: none;
}
.videoFeed img{
    border: 9px solid hsla(197,0%,0%, 0);
    border-radius:4vh;
    width:25vw;
    height:25vh;
}

.videoFeed img:hover{
    border: 0px solid hsla(197,0%,35.7%,0);
}



#mainPage{
    display:inline-grid;
    grid-template-columns: auto auto auto;
}