body {
    margin: 0%;
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #f1f5f9;
}

/* Headings */
h1 {
    text-transform: uppercase;
    text-align: center;
    margin-top: 3%;
    color: #38bdf8;
}

.white-text {
    color: #ffffff;
}

p {
    text-align: justify;
    letter-spacing: 1px;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
}

.center {
    text-align: center;
}

a {
    color: #38bdf8;
}

img {
    border-radius: 8px;
    max-width: 100%;
    height: 340px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.Navbar {
    overflow: hidden;
    background-color: #1e293b;
    position: fixed;
    top: 0;
    width: 100%;
}

.Navbar a {
    float: left;
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
}

.Navbar a:hover {
    background-color: #38bdf8;
    color: black;
}

.Navbar a.active {
    background-color: #2563eb;
}

/* Video */
#Typing_Video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    z-index: -1;
}

.Video_Text {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 20px;
    position: relative;
}

/* Columns */
* {
    box-sizing: border-box;
}

.Column_1 {
    float: left;
    width: 50%;
    padding: 10px;
    height: 400px;
    background-color: #1e293b;
}

.Column_2 {
    float: left;
    width: 50%;
    padding: 10px;
    height: 400px;
    background-color: #334155;
}

.Column_tall {
    height: 450px;
}

.Row:after {
    content: "";
    display: table;
    clear: both;
}

/* Contact Form */
input[type=text] {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 16px;
}

input[type=submit] {
    background-color: #2563eb;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
    transition: 0.5s;
}

footer {
    padding: 2%;
    background-color: #1e293b;
}