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

html{
    background-color: rgb(23, 23, 23);
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.title{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    align-items: center;
}

.memesectionimg{
    height: 100vh;
    margin: 100px;
}

.memesectionvideo{
    margin: 100px;
    display: flex;
    flex-direction: column;
}

.images{
    display: grid;
    grid: 1fr / 1fr 1fr 1fr;
    margin-bottom: 100px;
    gap: 50px;
}

.videos{
    /* height: 100vh; */
    /* width: 25vw; */
    display: grid;
    grid: 1fr / 1fr 1fr 1fr;
    justify-items: center;
    gap: 50px;
    /* margin-bottom: 100px; */
}

video{
    width: 25vw;
    height: 512px;
}

img{
    width: 25vw;
    height: 512px;
}

.memetitle{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

h1{
    font-size: 50px;
    color: white;
    font-family: sans-serif;
}

h2{
    font-size: 25px;
    color: white;
    font-family: sans-serif;
}