:root {
    --border: #2b2b2e;
}

* {
    margin: 0;
    padding: 0;
    font-family: inter;
}

body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    background: var(--bg);
    color: var(--text);
    background: #000 url("../images/noise.webp");
}

main {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactDetails {
    width: 100vw;
    height: 50vh;
    margin-top: 10vh;
    box-sizing: border-box;
    padding: 0 15%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    font-size: 7rem;
    text-transform: uppercase;
    font-weight: 800;
    -webkit-text-stroke: 0.75px white;
}

.contactID:hover,
.emailID:hover {
    color: rgba(255, 255, 255, 1);
}

.emailID {
    font-size: calc(100vw * 0.05357142857);
}

.contactID>span,
.emailID>span {
    font-family: inter;
    margin-top: -2%;
    box-sizing: border-box;
}

.contactID,
.emailID {
    font-family: poppins;
    display: flex;
    justify-content: start;
    align-items: center;
    color: rgba(255, 255, 255, 0);
    transition: color 500ms ease-out;
    cursor: pointer;
}

.divider {
    width: 100%;
    height: 0.75px;
    border-radius: 5px;
    background: white;
}

main {
    height: 80vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.heading {
    text-transform: uppercase;
    font-size: 7rem;
    font-weight: 500;
    position: relative;
    margin-bottom: 12.5vh;
}

.heading>br {
    display: none;
}

.heading::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    bottom: 0;
    height: 1px;
    background: white;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    box-sizing: border-box;
    padding: 0 15%;
}

.subHeading {
    width: 30%;
    height: 100%;
    font-size: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
}

form {
    width: 70%;
    height: 100%;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-end;
}

.line {
    margin-bottom: 2vh;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
}

.line::after {
    position: absolute;
    content: "";
    bottom: -0.25vh;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(125, 125, 125);
}

.line>.input {

    box-sizing: border-box;
    padding: 0;
    height: 2rem;
    margin: 0 1ch;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.input::after {
    position: absolute;
    left: 0;
    bottom: -0.25vh;
    border-radius: 1000px;
    content: "";
    width: 0%;
    height: 1px;
    background: #ffffff;
    z-index: 99999;
    transition: width 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.input:focus-within::after {
    width: 100%;
}

.input>input {
    width: 100%;
    height: 100%;
    border: none;
    color: rgb(174, 174, 174);
    background-color: transparent;
    font-size: 1.75rem;
    height: 2rem;
}

input::-webkit-search-cancel-button,
input::-webkit-clear-button {
    display: none;
}

input::placeholder {
    color: rgb(117, 117, 117);
}

textarea::placeholder {
    color: rgb(117, 117, 117);
}

.name {
    width: 45% !important;
}

.email {
    margin-right: 0 !important;
    width: 35% !important;
}

.email>input {
    width: 100% !important;
}

.number {
    width: 13ch !important;
    margin-left: 0 !important;
    margin-right: 2ch !important;
}


.line>div {
    width: max-content;
}

input:focus,
textarea:focus {
    outline: none;
}

.msgLine {
    height: 50%;
    align-items: flex-start;
}

.msgHeading {
    margin-right: 2vh;
}

#msg {
    height: calc(100% - 2vh);
    width: 100%;
    background: transparent;
    border: none;
    resize: none;
    color: rgb(174, 174, 174);
    font-size: 2rem;
}

.submitBTN {
    font-size: 2rem;
    background: none;
    border-radius: 100vw;
    border: 1px solid whitesmoke;
    color: white;
    padding: 1vh 3.5vw;
    cursor: pointer;
    transition: 150ms ease-in-out;
}

.submitBTN:hover {
    background: white;
    color: black;
}


@media (max-width: 599px) {

    html,
    body {
        overflow-x: hidden;
        position: relative;
        width: 100vw;
        max-width: 100vw;
    }

    .contactDetails {
        width: 100vw;
        height: 75dvh;
        margin-top: 11.25vh;
        padding: 0 8%;
        font-size: 2.5rem;
    }

    .divider {
        width: 100%;
        height: 0.75px;
        border-radius: 5px;
        margin: 1.75vh 0;
        background: white;
    }

    .emailID {
        font-size: calc(100vw * 0.0641025641);
    }

    .heading>br {
        display: none;
    }

    .heading {
        text-transform: uppercase;
        font-size: calc(100vw * 0.07948717949);
        font-weight: 500;
        position: relative;
        margin-bottom: 0vh;
        width: 84%;
    }

    .container {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: start;
        align-items: center;
        box-sizing: border-box;
        flex-direction: column;
        padding: 0 8%;
    }

    .subHeading {
        width: 100%;
        height: 100%;
        font-size: calc(100vw * 0.07948717949);
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    form {
        width: 100%;
        height: 100%;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-end;
    }

    .input>input {
        width: 100%;
        height: 100%;
        border: none;
        color: rgb(174, 174, 174);
        background-color: transparent;
        font-size: 0.8rem;
        height: 1.25rem;
    }
}