
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: url(/assets/home-bg.png) center no-repeat;
    background-size: cover;
    min-height: 100vh;
}

/*Home section styling*/

#home{
    padding-inline: 20px;
}

.title, nav{
    width: fit-content;
    text-align: center;
    margin: auto;
}

.title{
    padding-top: 225px;
    margin-bottom: 20px;
}

.title h1{
    font-size: 45px;
    color: #ff467e;
    font-weight: 800;
    letter-spacing: 3px;
}

.title p{
    color: #505050;
    font-weight: 600;
}

nav ul{
    list-style: none;
}

nav ul li{
    margin-bottom: 10px;
}

nav ul li a{
    text-decoration: none;
    color: #505050;
    font-weight: 600;
}

nav ul li img{
    vertical-align: middle;
    width: 32px;
}