*{
    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: #fff;
    font-family: 'Haas', sans-serif;
    color: #323232;
    position: relative;
    overflow: hidden;
    
}

a{
    text-decoration: none;
    color: #323232;
}


.main{
    width: 100%;
    height: 100%;
    
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    grid-template-rows: repeat(5,1fr);
    
    
}

.block{
    width: auto;
    padding: 28px 7px 7px 7px; 
    border: 1px #212121b0 solid; 
    display: flex;
    /* background: linear-gradient(#d8d8da, #fefdfe); */
}
#name {
    grid-column: span 2;
}
#name p, #info p{
    font-size: 40px;
}
.text{
  width: 100%;  
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}
.text ul{
    list-style: none;
}
.text p{
    font-size: 22px;
}
#name, #info, .mb {
    padding: 32px 7px 7px 7px; 
    border: none;
    border-bottom: 1px #212121b0 solid;
}

@media (max-width: 900px) {
    .main{
        width: 100%;
        height: 100%;
        
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: repeat(5,1fr);
        
        
    }

    #name, #info, .mb {
        padding: 32px 7px 7px 7px; 
        border: 1px #212121b0 solid;
    }
    #name {
        grid-column: span 1;
    }

    .mb{
        display: none;
    }
}

/* #follower{
    width: 20vw;
    height: 20vw;
    background-image: radial-gradient(#ffffff,rgb(210, 58, 16),rgb(17, 231, 206));
    position: absolute;
    border-radius: 50%;
    filter: blur(1.5vw);
    opacity: 0;
    transition: 1s;
    top: 0;
    left: 0;
    z-index: -1;
} */

