body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    margin: 30px;
    padding: 0;
    background-color: hsl(0, 0%, 0%);
    color: #fff;
}

header {
    background-color: #333333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #aaaaaa;
 }

 input[type=submit] {
    background-color: #333333;
    border: none;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
 }

 .typewriter-container {
    display: flex;
    justify-content: flex-start;
 }

 .typewriter p {
    font-size: 45px;
    font-weight: lighter;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    animation: typing 3.5s steps(22);

 }

@keyframes typing {
    from {width: 0;}
    to {width: 100%;}
}












