/* Type writer styles */

.blink {
    animation: blink-cursor infinite alternate 0.5s;
}

@keyframes blink-cursor {
    0%,49% {
        color: black;
    }
    50%,100% {
        color: transparent;
    }
}

/* - */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inconsolata', monospace;
}

body {
    background-color: rgb(240, 191, 145);
}

.section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 900px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 50px 60px;
    background-color: rgb(255, 222, 191);
    border-radius: 3px;
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.466);
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li p{
    display: inline-block;
}

a {
    display: inline-block;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

#p-main-text-type-writer {
    font-size: 28px;
    margin-bottom: 20px;
}

#p-second-text-type-writer {
    font-size: 24px;
    margin-bottom: 20px;
}