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

body{

    background:#111;
    color:white;
    font-family:Helvetica, Arial, sans-serif;
    padding:40px;

}

h1{

    text-align:center;
    font-weight:300;
    letter-spacing:4px;
    margin-bottom:40px;

}

.gallery{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    max-width:900px;
    margin:auto;

}

.gallery img{

    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:8px;
    transition:.3s;

}

.gallery img:hover{

    transform:scale(1.03);
    opacity:.8;

}

.page{

    max-width:800px;
    margin:auto;

}

.page img{

    width:100%;
    margin:30px 0;
    border-radius:10px;

}

p{

    line-height:1.8;
    margin-bottom:30px;

}

.spotify{

    margin:40px 0;

}

.back{

    color:white;
    text-decoration:none;

}

.back:hover{

    text-decoration:underline;

}