@import url("colors.css");
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Share Tech Mono', sans-serif;
}

::-webkit-scrollbar {
    width: 0;
}

::selection {
    color: var(--ink);
}

.wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#logo, #contact {
    height: 100vh;
}

#logo {
    width: 100%;
    position: relative;
    background-color: var(---creme);
}

.background {
    object-fit: contain;
    position: absolute;
    height: 100%;
    width: 100%;
}

#contactParent {
    width: 40%;
    height: 100%;
    background: var(--black);
    display: grid;
    place-items: center;
}

#contact {
    height: 50%;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    position: relative;
    text-align: center;
}

#contact #content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#contact #content table {
    width: 100%;
    padding-top: 2em;
    /* background-color: red; */
}