*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #fff;
    user-select: none;
}
body{
    background-color: #000;
    padding: 10px;
    min-height: 200vh;
}

embed{
    width: 100%;
    height: 100%;
}
iframe{
    width: 100%;
    height: 400px;
    border: 0;
    overflow: hidden;
    user-select: none;
}
.title{
    width: 100%;
    display:flex;
    justify-content: space-around;
    align-items: center;
    font-size: 8vw;
}
p{
    font-size: 32.5px;
    text-align: justify;
    padding: 15px;
}
img{
    width: 100%;
}
.images{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));;
    width: 100%;
}
hr{
    color: #fff;
    margin-top: 7px;
}
.sound{
    filter: grayscale(100) invert(1);
    background-color: #ffffff;
    border: 0 #000;
    width: 100%;
    height: 100%;
}
.tap{
    background-color: #ffffff10;
    cursor: pointer;
}
@media only screen and (max-width: 900px) {
    .images{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        
    }
    p{
        font-size: 25px;
    }
    
}