* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: stencil;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--text-color);
    user-select: auto;
    width: device-width;
    padding-top: 6.7rem;
    color: #fff;
}

:root {
    --Dark-Blue: #244855;
    --Red: #E64833;
    --Brown: #874F41;
    --Light-Blue: #90AEAD;
    --Skin: #FBE9D0;
    --text-color: #131313;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 30px, 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    position: fixed;
}

header .Logo {
    color: white;
    font-weight: 700;
    text-decoration: none;
    font-size: 125%;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.0s;
    text-shadow: 0 0 25px var(--Dark-Blue);
    margin-left: 119px;
    position: absolute;
}

.Logo:hover {
    border-bottom: 4px solid red;
}

.logoimg {
    width: 85px;
    height: 85px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-left: 27px;
}

#logoimg:hover {
    transform: scale(1.1);
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

header ul li {
    list-style: none;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 120%;
}

header ul li:hover {
    transform: scale(1.1);
}

header ul li a {
    text-decoration: none;
    padding: 10px 25px;
    color: #fff;
}

header ul li a:hover,
header ul li a.active {
    border-bottom: 4px solid red;
    color: white;
}

.contact {
    background-color: white;
    margin-right: 38px;
    margin-left: 38px;
}

.headingcontact {
    font: bold;
    color: white;
    font-size: xx-large;
    font-family: georgia;
}

.contactdiv {
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 6%;
    padding-bottom: 5%;
}

.papr {
    color: white;
    font-size: 135%;
    font-family: georgia;
    font: bolder;
}

.contactdiv input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 4rem;
    font-weight: 200;
    padding: 1.4rem;
    background: transparent;
    border: 1px solid white;
    font-size: large;
    line-height: 6vh;
    color: white;
}

.contactdiv input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 4rem;
    font-weight: 200;
    padding: 1.4rem;
    background: transparent;
    border: 1px solid white;
    font-size: large;
    line-height: 6vh;
    color: white;
}

.submitform {
    font-size: 180%;
    font: bold;
    font-family: 'Times New Roman', Times, serif;
    background-color: black;
    color: white;
    padding: 12px 27px;
    border: 1px solid white;
    cursor: pointer;
}

.submitform:hover {
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    border-top: 1px solid white;
    border-right: 4px solid red;
    transition: 0.3s;
}