:root {
    --dark-color: #1a1a1a;
    --primary-color: #70acfa;
    --secondary-color: #5cff92;
    --orange: #ff8400;
    --header-font: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    --code-font: 'SF-Mono', 'Fira-Code', 'Fira-Mono', 'Roboto-Mono', monospace;
}

h1 {
    color: var(--primary-color);
    font-size: 60px;
    font-family: var(--header-font);
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    text-align: center;
}

h2 {
    color: var(--secondary-color);
    font-size: 40px;
    font-family: var(--header-font);
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
}

h3 {
    color: var(--primary-color);
    font-size: 30px;
    font-family: var(--code-font);
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 5px;
}

p1 {
    color: var(--dark-color);
    font-family: var(--code-font);
    margin-top: 10px;
    margin-bottom: 10px;
}

p2 {
    color: var(--primary-color);
    font-size: 20px;
    font-family: var(--code-font);
    margin-top: 10px;
    margin-bottom: 10px;
}

p3, li, ul {
    color: var(--primary-color);
    font-size: 20px;
    font-family: var(--code-font);
    margin-top: 10px;
    margin-bottom: 10px;
}

.wrapper {
    text-align: center;
}

.button {
    border: none;
    color: var(--primary-color);
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--code-font);
    background-color: #1a1a1a;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    border: var(--secondary-color);
    border-width: 2px;
    border-style:solid;
    cursor:pointer;
}

.button:hover {
    background-color: var(--primary-color);
    color: #262626;
}

.button-section {
    margin-bottom: 20px;
    margin-top: 40px;
}

.line {
    height: 2px; 
    background-color:var(--secondary-color);
    border:var(--secondary-color);
}

.title-line {
    margin-top: 0px;
    width: 80%;
    margin-bottom: 40px;
}


.profile-pic {
    height: 400px;
    border: 2px solid var(--secondary-color);
}

.container {
    margin-left: 20%;
    margin-right: 20%;
    display: flex;
}

.inline-block {
    display: inline-block;
}

.block-section {
    display:inline-block;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 80px;
}

.socials-section {
    margin-left: 20%;
    margin-right: 20%;
    text-align: center;
    margin-bottom: 40px;
}

.social-button {
    display: inline-block;
    height: 40px;
    width: 10%;
    margin-left: 20px;
    margin-right: 20px;
}

.logo {
    height: 100%;
}

.line-logos {
    margin-top: 80px;
    margin-bottom: 30px;
    width: 80%;
}

.bi-panel-text {
    float: left;
    width: 64%;
}

.bi-panel-pic {
    float: left;
    text-align: center;
    width: 34%;
    margin-left: 2%;
}

@media only screen and (max-width: 1200px) {    
    .bi-panel-text {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }

    .bi-panel-pic {
        text-align: center;
        margin-top: 30px;
        margin-right: 10%;
        width: 80%;
        margin-left: 10%;
    }
    .container {
        display:inline;
    }
    .socials-section {    
        margin-right: 10%;
        width: 80%;
        margin-left: 10%;
    }
    .line {
        width: 90%;
    }
    .block-section {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }
}