
CSS
Title background with box shadow
Place Items Center with CSS Grid
.logo{
display: grid;
place-items: center;
}
Font Size Clamp
The clamp() CSS function clamps a value between an upper and lower bound. clamp() enables selecting a middle value within a range of values between a defined minimum and maximum.
font-size: clamp(40px, 2.5vw, 68px);
font-size: clamp(1.6rem, 2.5vw, 2.8rem);
Social Icons

CSS Aspect Ratio
.cover{
width: 100%;
max-width: 1288px;
aspect-ratio: 16/9;
}
CSS Gradient Text

Neumorphism Box-Shadow Effect
Live Sass Compiler settings.json
"liveSassCompile.settings.formats":[
{
"format": "compressed",
"savePath": "/assets/css"
}
]
