@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    overflow-x: hidden;
    font-family: 'IBM Plex Mono', monospace;
}

.main {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #80808012 1px, transparent 1px),
        linear-gradient(to bottom, #80808012 1px, transparent 1px);
    background-size: 2rem 2rem;
}

.info {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: bisque;
    width: fit-content;
    padding: 2rem 5rem;
    margin-top: 5rem;
}

.info h1 {
    font-weight: 800;
}

.info h3 {
    font-weight: 500;
}

h1 span {
    text-decoration: underline;
}

.summary {
    max-width: 32rem;
}

.connect {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: bisque;
    width: fit-content;
    /* width: auto; */
    padding: 2rem 5rem;
    margin-top: 5rem;
}

.info, .connect {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1))
}

.contact-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 0.5rem 1.5rem;
    border: 2px solid black;
    background: transparent;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
    margin: 1rem 0rem;
}

.contact-button:hover {
    background: rgb(221, 198, 170);
    color: black;
}



/* Phones */
@media screen and (max-width: 768px) {
    .info {
        margin-top: 0;
    }
}