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

html {
    scroll-behavior: smooth;
}

* {
    --color-primary: #7B3C0F;
    --color-secondary: #3B5611;
    --color-background: #F2EFE5;
} 

body {

    font-family: "Inter";
    font-weight: 400;
    font-weight: 200;

    height: 100vh;
    width: 100vw;

    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    padding: 0px 90px;

    background-color: var(--color-background);
    
}

#content {
    width: 50vw; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}




















.homelab-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.homelab-indicator {
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 100%;
}

.homelab-indicator.indicator-fine {
    background-color: var(--color-secondary);
}

.homelab-title {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.homelab-title h2 {
    font-weight: 600;
    padding: 0;
    margin: 0;
}

section {
    width: 100%; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    box-sizing: border-box;
    padding: 100px 0px;
}

section article {
    display: flex;
    flex-direction: column;
    gap: 35px;
}


section h1.main-title {
    font-family: "Gravitas One";
    font-size: 68px;
    font-weight: normal;
    letter-spacing: -5%;
    line-height: 90%;

    margin: 0;
    padding: 0;
    color: var(--color-primary);
}

section hr {
    border: 0px solid transparent; 
    border-top: 1px solid black;

    height: 1px;
    width: 100%;

    margin: 0; 
    padding: 0;
}

section p {
    font-size: 22px;
    letter-spacing: normal;
    line-height: 125%;
    font-weight: 200;
    text-align: left;

    margin: 0;
    padding: 0;
    width: 100%;
}

.tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    gap: 10px;
}

.tabs div {
    border-radius: 10px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1;

    padding-top: 5px; 
    padding-bottom: 5px;
    
    font-weight: 400;

    position: relative;
    color: var(--color-primary);

    transition: color .2s ease, background-color .2s ease;

}

.tabs div:not(.tab-active) {
    cursor: pointer;
}

.tabs div:not(.tab-active):hover {
    background-color: #fafafa;
}

.tabs .tab-active {
    color: white;
    background-color: var(--color-primary);
}

.btn {
    display: flex;
    padding: 7.5px 15px;
    justify-content: center;
    align-items: center;

    background-color: var(--color-primary);
    color: white !important;
    font-weight: 500 !important;
    font-size: 16px;

    gap: 5px;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .1);

    transition: transform .1s ease;
    width: fit-content;
}

.btn:hover {
    transform: scale(1.05) !important;
}

.btn:active {
    transform: scale(.95) !important;
}

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;

    height: 25px;
}

.social-icon {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
}

.social-icon:hover .name {
    width: initial;
    opacity: 1;
    margin-left: 7.5px;
}

.social-icon .name {
    text-decoration: none;
    font-weight: 500;
    font-size: 22px;

    width: 0px;
    opacity: 0;

    transition: width .5s ease;
} 

.social-icon img {
    height: 100%;
}