@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --dark-blue: #02394A;
    --pink: #DB3069;
}

body,
html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #dadada;
}

* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#under {
    display: flex;
    align-items: center;
    padding: 4rem 25%;
    flex-direction: column;
    gap: 2rem;
}

.arrow-down {
    position: absolute;
    top: calc(100% - 60px);
    width: 30px;
    filter: invert(40%) sepia(77%) saturate(5412%) hue-rotate(322deg) brightness(89%) contrast(92%);
}

#under .card {
    max-width: 600px;
    text-wrap: auto;
}

#under .card .card-wrapper {
    align-items: center;
}

.card {
    background-color: var(--dark-blue);
    padding: 1.5rem;
    position: relative;
}

.card-wrapper {
    display: flex;
    height: 100%;
    /* gap: 1.5rem; */
}

.card-wrapper .card-sub {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.left-card-wrapper {
    flex: 1;
    justify-content: start;
    padding-right: 0.75rem;
}

.right-card-wrapper {
    flex: 2;
    justify-content: space-between;
    border-left: 0.2rem solid var(--pink);
    padding-left: 0.75rem;
}

.right-card-wrapper div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.25rem;
}

.left-card {
    margin-right: auto;
}

.right-card {
    margin-left: auto;
}

.brand-logo {
    height: 3rem;
    padding-bottom: .5rem;
}

.small-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.small-logo .brand-logo {
    padding-bottom: 0;
}

.brand-dates {
    text-align: right;
    width: 100%;
    font-style: italic;
    font-size: 1.1rem;
}

.brand-headline {
    font-weight: bold;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
}

#profile-pic-wrapper {
    width: 100%;
}

#profile-pic-wrapper img {
    width: 100%;
    border-radius: 100%;
}

#links-wrapper {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    width: 100%;
    height: 100%;
    align-items: center;
    padding-top: 1rem;
}

.link-icon {
    height: 2.5rem;
    filter: invert();
}

#linked-in-icon {
    filter: none;
}

h1,
h2,
h3,
p,
li {
    margin: 0;
    text-wrap: nowrap;
}

#under .card p {
    text-wrap: auto;
}


ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
    text-align: right;
    margin: 0.25rem;
}

i {
    text-wrap: balance;
}

.emoji {
    width: 2rem;
}

.with-emoji {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dots {
    width: 100%;
    height: 10px;
    background: radial-gradient(circle at center, var(--pink) 0.1rem, transparent 0);
    background-size: 1rem;
    margin: 0 1rem;
}

a {
    transition: all 250ms;
}

a:hover {
    filter: opacity(0.8);
    transition: all 250ms;
}

.brand-link:hover {
    filter: none;
}

@media screen and (max-width: 768px) {
    body {
        background-color: var(--dark-blue);
    }

    main {
        width: 100%;
    }

    .arrow-down {
        display: none;
    }

    #under {
        padding: 4rem 0;
    }

    .small-logo {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .card {
        aspect-ratio: none;
        width: 100%;
        height: 100%;
    }

    .card-wrapper {
        flex-direction: column;
        height: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p,
    li {
        font-size: 1rem;
    }

    li {
        margin: 0.25rem;
    }

    .left-card-wrapper {
        padding-right: 0;
        padding-bottom: 0.75rem;
        align-items: center;
        gap: 0.7rem;
    }

    .right-card-wrapper {
        border-left: none;
        padding-left: 0;
        border-top: 0.2rem solid var(--pink);
        padding-top: 0.75rem;
        height: 100%;
        justify-content: space-evenly;
    }

    .dots {
        height: 10px;
    }

    #profile-pic-wrapper {
        width: 80%;
    }
}