@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: #111;
    color: #ddd;
}

.jost-text {
    font-family: "Jost", sans-serif;
    font-weight: 200;
    text-align: center;
    margin-bottom: 2rem;
}

.italic {
    font-style: italic;
}

.container {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    column-gap: 4rem;
}

.info {
    width: 50%;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    letter-spacing: 0.5px;
}

.info .desc-text {
    font-size: 20px;
    font-weight: bold;
}

.initials {
    font-style: italic;
    font-size: 8rem;
    font-weight: bold;
}

.connect-text {
    font-size: 16px;
}

.link {
    color: #ddd;
    font-style: bold;
}

hr {
    background-color: #888;
    border: none;
    height: 0.5px;
    width: 100%;
}

@media (max-width: 1200px) {
    section {
        flex-direction: column;
        row-gap: 2rem;
        width: 100%;
    }

    .info {
        width: 80%;
    }

    .info .desc-text {
        font-size: 16px;
    }

    .connect-text {
        font-size: 14px;
    }

    .initials {
        font-size: 7rem;
    }
}
