*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Haas';
    src: url('fonts/NeueHaasDisplay-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body{
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    font-family: 'Haas', sans-serif;
    color: #323232;

    
}

a{
    text-decoration: none;
    color: #1b1b1d;

}
.main{  
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    grid-template-rows: repeat(5,1fr);
    
}
.block{
    width: 100%;
    height: 100%;
    padding: 28px 7px 7px 7px; 
    
    display: flex;
}




#about{
    padding-top: 50px;
    grid-column: 1/3;
    grid-row: 1/2;
    font-size: 24px;
}

#sc{

    grid-column: 1/2;
    grid-row: 4/5;

    width: 100%;
    height: 100%;
    
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(5,1fr);
}

#mp{

    grid-column: 2/3;
    grid-row: 4/5;

    width: 100%;
    height: 100%;
    
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(5,1fr);
}

#artwork{
    grid-column: 3/6;
    grid-row: 1/6;
    display: flex;
    align-items: center;
    justify-content: center;
    

}
.piece{
    background-color: cornflowerblue;
    
    width: 70%;
    height: 80%;
    border-radius: 50%;
    filter: blur(100px);
}



ul{
  margin: 0px 7px 7px 7px; 
  list-style: none;
  width: 30%;
  height: 10%;
  display: flex;
  flex-direction: column;
    
}
li{
    font-size: 16px;
}
#sm > a{
    margin-bottom: 28px;
}
#sm > a > p{
    font-size: 24px;
}