@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

body {
    color: #343434;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 1px 1px 2px #0000005e;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    background: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
}

h1 {
    font-size: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #333;
    font-weight: bold;
}

h2 {
    font-size: 30px;
    color: #fff;
    margin: 50px 0;
    text-align: center;
}

h2 span {
    color: #2f2f2f;
    padding: 15px;
    display: inline-block;
}

p {
    font-size: 15px;
    color: #fff;
}