@keyframes typing {
    from {width: 0;}
    to {width: 100%;}
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
/*Mobile phone scaling*/
@media (min-width: 600) {
    .title {grid-area: 1 / span 2;}
}
body {
    font-family: 'Courier New', monospace;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: 
        typing 1.5s steps(30, end), 
        blink-caret .75s step-end infinite;
}
.navBar {
    background-color: #C5E6A6;
    position: sticky;
    top: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    border: 3px solid #92B472;
    animation-name: fadeIn;
    animation-duration: 3s;
}
.home {
    text-align: center;
    line-height: 1.5;
    padding-left: 50px;
    padding-right: 50px;
}
.services {
    text-align: center;
    line-height: 1.5;
    padding-left: 50px;
    padding-right: 50px;
}
.contact {
    padding-left: 50px;
    padding-right: 50px;
}
button {
    background-color: #C5E6A6;
    border: none;
    color: black;
    padding: 16px 32px;
    text-align: center;
    font-size: 20px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
button:hover {
    background-color: #92B472;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    font-size: 18px;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
    animation-name: fadeIn;
    animation-duration: 1s;
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 5px solid #888;
    width: 90%;
}
.modal-content input {
    margin-bottom: 15px;
    width: 50%;
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
}
.modal-content textarea {
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 150px;
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
}
.modal-header {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}
.close {
    color: black;
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: red;
}
.close:active {
    transform: translateY(2px);
}