* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Comfortaa";
}

body {
    background-color: aliceblue;
}

.btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    padding: 0 1rem;
    border-radius: 8px;
}

header {
    border-bottom: 1px solid lightslategrey;
    box-shadow: 1px 1px 6px lightslategrey;
}

.header_container {
    padding: 1rem 2rem;
    display: flex;
    align-items: end;
    gap: 10px;
    justify-content: start;
}   

.logo {
    font-family: "Anonymous Pro";
    display: flex;
}

.header_github {
    font-size: small;
}

.container {
    max-width: 800px;
    padding: 1rem;
    margin: auto;
    min-height: 100dvh;
}

/* Developer Intro */
.intro_developer {
    background-color: antiquewhite;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid antiquewhite;
}

.intro_developer_cta {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
    margin-top: .25rem;
}

.algos {
    /* background-color: gainsboro; */
    margin: 1rem 0;
    /* padding: 1rem; */
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    gap: 1rem;
}

.algo {
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid lightslategrey;
    box-shadow: 2px 2px 5px lightslategrey;
    background-color: lightblue;
}