JSFiddle - React, Tailwind, and code Playground

HTML

<div class="title">
  <p>MY WEB</p>
</div>
<div class="content">
  <div class="description">
    With HTML, CSS, and Javascript
  </div>
  <div class="button">
    CONTINUE
  </div>
</div>

CSS

.title {
  font-family: 'Secular One', sans-serif;
  font-size: 100px;
  text-align: center;
  margin-top: 150px;
  color: white;
}

.title p{
  margin: 0px;
}

body {
  background-color: #192a75;
}

.description {
  color: white;
  text-align: center;
  padding-bottom: 50px'
}

.button {
  font-family: 'Sen', sans-serif;
  background-color: white;
  font-size: 20px;
  width: 150px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}