I want to center the text in the logo as in the picture. Tell me how to do it better? 
@import "vars" @import "fonts" @import "libs" body overflow-x: hidden position: relative margin: 0 header height: 100vh background: image: url("../img/bg-image.png") size: cover position: center .content left: 80px position: absolute .top-line margin-top: 44px font-size: 15px p text-transform: uppercase font-family: $default-font1 color: #fff margin-left: 37px margin-bottom: 0 &:nth-child(1) font-weight: 400 &:last-child font-weight: 800 white-space: nowrap margin-top: -26px @import "media" // Always at the end <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Date Service Manager</title> <link rel="stylesheet" href="css/main.min.css"> </head> <body> <header> <div class="content"> <div class="top-line"> <img src="../img/logo1.svg" alt="Dart Service Manager"> <p>Dart</p><br> <p>Service Manager</p> </div> </div> </header> </body> </html>