body{
    font-family: 'Roboto', sans-serif;
    background-color: white;
    background-image: url("pictures/lips.png");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size:20%;
    margin:0px;
}

header{
    font-family: 'Cabin Sketch', cursive;
    height:15vh;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    width:100vw;
    color:white;
    background-color: black;
    top:0;
}
#navbar{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 10px;
    text-align: center;
    background-color:black;
}
#navbaricon{
    display:flex;
    align-items: center;
    justify-content: center;
    padding:10px;
    font:15px;
    text-align: center;
    font-size: 20px;
    background-color: white;
    border-radius: 40%;
    
}
#navbaricon a{
    text-align: center;
    text-decoration: line-through pink;
    color:black;
}
#heading{
    text-align: center;
    padding:30px;
    position:sticky;
    top:22vh;
}
.body{
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
#image {
 width: 30%;
 height: 30%;
}
#image img {
    width:30vw;
    height:30vw;
}
#about {
    width:60%;
    padding:30px;
}
#about p{
    font-family: 'Cabin Sketch', cursive;
}
.rando {
    height:18vh;
}
@media screen and (max-width: 600px) {
    #about p{
        font-size:14px;
    }
  }