-1

I have some trouble with getting text centering in my website, for some reason. I need the text to be exactly centered in the website, both computer and website.

.bg { 
    background: url(https://i.imgur.com/HrC81SX.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    -webkit-filter: blur(5px);
    filter: blur(5px);
  }

#cs {
    display: block;
    text-align: center;
    font-family: 'Times New Roman';
    position: absolute;
    color: #EFE4D9;
}

#text {
    text-align: left;
}
<div class="bg"></div>
<h1 id="cs" style="text-align: center;">C O M I N G&nbsp;&nbsp;&nbsp;S O O N</h1>
<p id="text">such's movie room is on it's way through the development, just stay tuned! C:<br>- such <3</p>
BeHappy
  • 2,627
  • 2
  • 8
  • 31
rixchy_
  • 13
  • 5

2 Answers2

0
.bg { 
    background: url(https://i.imgur.com/HrC81SX.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index:0;
  }

#cs {
    display: block;
    text-align: center;
    font-family: 'Times New Roman';
    position: relative;
    color: #EFE4D9;  
}

#text {
  position: relative;
}
-1

Try this:

.bg { 
    background: url(https://i.imgur.com/HrC81SX.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index:0;
  }

#cs {
    display: block;
    text-align: center;
    font-family: 'Times New Roman';
    position: relative;
    color: #EFE4D9;  
}

#text {
  position: relative;
}
<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="styles.css">
    </head>
    <body>
        <div class="bg"></div>
        <h1 id="cs" style="text-align: center;">C O M I N G&nbsp;&nbsp;&nbsp;S O O N</h1>
        <p id="text">such's movie room is on it's way through the development, just stay tuned! C:<br>- such <3</p>
        <!--a countdown should be here-->
    </body>
</html>
Sheri
  • 1,242
  • 2
  • 6
  • 21