Вот картинка:
Вот, что я написал:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<main>
<h1>JS</h1>
</main>
</body>
</html>
CSS
body{
margin: 0;
padding: 0;
background: #000;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
main {
width: 600px;
height: 600px;
background: yellow;
position: relative;
transform: scale(0.5) rotate(-30deg) skew(25deg);
}
main h1 {
text-align: right;
margin-top: 430px;
margin-right: 10px;
margin-bottom: 5px;
font-family: "TT Commons", sans-serif;
font-size: 185px;
}