body {
   background-color: #008080;
    color: white;
}

/* Nav section */
 nav {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
    
 }
 .navbar-brand {
    font-size: 50px;
    font-family: Arial, Helvetica, sans-serif;
 }
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
    font-size: 22px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 0%;
}

.toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.typing::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

h4, h5 {
    margin-top: 20px;
	padding-top: 0px;
}

.paragraph {
    font-size: large;
}


/* card section */
.card{
    color: white;
}


.make-yellow {
	color: yellow;
}

/* image section */
img {
    width: 550px;
    height: 650px;
}

/* Contact Form */
form {
    display: block;
    flex-direction: column;
    align-items: center;
    width: 50%;
    padding: 10px;
    margin: 2% 0% 2% 15% ;
    font-size: 1.025rem;
}

input.form-control,
textarea.form-control {
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    height: 50px;
}

textarea.form-control {
    height: 120px;
    resize: none;
}

form button {
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
	margin: 20px auto;
    height: 40px;
}

/* Social Media Icons */
.social-links {
    background-color: black;
    width: 100%;
    height: 100px;
    padding-top: 40px;
}

/* footer section */
.footer {
    background-color: rgba(51, 51, 51, 0.8);
    width: 100%;
    height: 100px;
    padding-top: 40px;
}




