
:root {
    --background-color: #121217;
    --text-color: rgb(229, 227, 219);
    --link-color: #4481f1;
    --link-highlight-color: rgb(175, 244, 255);
    --transition-speed: 0.2s;
}

/*:root {
    --background-color: #0c0d13;
    --text-color: rgb(213, 217, 220);
    --link-color: rgb(32, 193, 126);
    --link-highlight-color: rgb(178, 255, 164);
    --transition-speed: 0.2s;
}*/

@font-face { 
    font-family: default-font; 
    src: url('fonts/RobotoFlex-Regular.ttf');
}

@font-face { 
    font-family: title-font; 
    src: url('fonts/JuliusSansOne.ttf');
}


body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    margin-left:auto;
    margin-right:auto;
    width: 1200px;
}

/*hr {
    color: var(--text-color);
    background-color: var(--text-color);

    height: 3px;
    border-radius: 100px;
}*/

p {
    width: 820px;
    line-height: 35px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    text-align: justify;
    text-justify: inter-character;
    font-family: default-font;
    padding-top: 10px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /*border-radius:2%;
    overflow:hidden;*/
}

h2 {
    font-family: title-font;
    font-weight: bold;
    font-size: 30px;
    text-shadow: 0px 4px 5px black;
}

h3 {
    margin-top: 70px;
}

hr {
    /*width: 450px;*/
    color: inherit;
    height: 0px;
    background-color: currentColor;
    box-shadow: 0px 4px 5px black;
}

footer {
    text-align: center;
    font-size: 15px;
    padding-bottom: 10px;
    background-color: #0b0b0f;
    width: 100%;
    margin-top: 90px;
    padding-top: 10px;
}

.glow {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -100%);
    border-radius: 50%;
    width: 700px;
    height: 400px;
    background: radial-gradient(circle, #73d7ff2c, #0015ff15);
    filter: blur(100px);
    z-index: -1;
}
  
.glow2 {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -100%);
    border-radius: 50%;
    width: 650px;
    height: 250px;
    background: radial-gradient(circle, #73d7ff2c, #1900ff15);
    filter: blur(100px);
    z-index: -1;
}

a {
    color:var(--link-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: transform var(--transition-speed) ease-in-out, color var(--transition-speed) ease-in-out;
}

nav {
    display: flex;
    justify-content: center; /* Push links to the right */
    text-align: center; /* Align them vertically */
    padding: 10px;
    gap: 40px; /* Adjust spacing between links */
}

nav a {
    font-size: 30px;
    padding-top: 0px;
    padding-bottom: 15px;
    font-weight: bold;
    height: 20px;
    font-family: title-font; 
    text-shadow: 0px 4px 5px black;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* Adjust the position of the underline */
    width: 100%;
    height: 2px; /* Thickness of the underline */
    box-shadow: 0px 4px 5px black;
    border-radius: 0px;
    background-color: var(--link-color);
    transform: scaleX(0); /* Initially hidden */
    transform-origin: center;
    transition: transform var(--transition-speed) ease-in-out, background-color var(--transition-speed) ease-in-out;
}

a:hover {
    color: var(--link-highlight-color); /* Change text color on hover */
}

nav a:hover::after {
    transform: scaleX(1); /* Expands on hover */
    background-color: var(--link-highlight-color);
}

.name {
    display: flex;
    font-family: inherit;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    margin-bottom: 40px;
    
    font-family: title-font; 
    border: none;
    background-color: inherit;
    font-weight: bold;
    color: inherit;
    font-size: 60px;
    height: 60px;
    cursor: pointer;
    text-shadow: 0px 4px 5px black;
}

.social-bar {
    display: flex;
    gap: 20px;
    width: 820px;
    margin-left: auto;
    margin-right: auto;
}
  
@property --blsky_col1 {
    syntax: '<color>';
    initial-value: #ffffff;
    inherits: false;
}

@property --blsky_col2 {
    syntax: '<color>';
    initial-value: #ffffff;
    inherits: false;
}

@property --lnkdn_col1 {
    syntax: '<color>';
    initial-value: #ffffff;
    inherits: false;
}

@property --lnkdn_col2 {
    syntax: '<color>';
    initial-value: #ffffff;
    inherits: false;
}

.social-icon {
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.social-icon svg {
    width: 25px;
    height: 25px;
    fill: #0F0F0F;
    transition: fill 0.3s ease;
}

.social-icon.bluesky {
    background: linear-gradient(150deg, var(--blsky_col1), var(--blsky_col2));
    transition: --blsky_col1 0.3s ease, --blsky_col2 0.3s ease;
}

.social-icon.bluesky:hover {
    --blsky_col1: #3ddbff;
    --blsky_col2: #0085FF;
}

.social-icon.linkedin {
    background: linear-gradient(150deg, var(--lnkdn_col1), var(--lnkdn_col2));
    transition: --lnkdn_col1 0.3s ease, --lnkdn_col2 0.3s ease;
}

.social-icon.linkedin:hover {
    --lnkdn_col1: #0077b5;
    --lnkdn_col2: #0d136b;
}

.social-icon:hover svg {
    fill: white;
}

.contact-container {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;

    width: 600px;

    
}

.contact-input {
    padding-left: 20px;
    border-radius: 15px;
    color: var(--text-color);
    background-color: #0b0b0f;
    border: none;
    outline: none;

    font-family: default-font;
    font-size: 15px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.187);
}

.contact-input:focus {
    border: 2px solid var(--link-color);
}

.contact-container input {
    height: 40px;
}

.contact-container textarea {
    height: 200px;
    resize: none;
    padding: 15px;
}

@property --contact_col1 {
    syntax: '<color>';
    initial-value: rgb(51, 99, 212);
    inherits: false;
}

@property --contact_col2 {
    syntax: '<color>';
    initial-value: rgb(27, 64, 250);
    inherits: false;
}


.contact-container button {
    display: flex; /* Aligns text and image properly */
    align-items: center; /* Centers items vertically */
    justify-content: center; /* Centers content horizontally */
    height: 40px;
    width: 150px;
    background: linear-gradient(45deg, var(--contact_col1), var(--contact_col2));
    cursor: pointer;
    transition: --contact_col1 0.3s ease, --contact_col2 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.contact-container button:hover {
    --contact_col1: rgb(60, 118, 255);
    --contact_col2: rgb(122, 155, 255);
}

.contact-container svg {
    width: 25px;
    padding-left: 10px;
    padding-right: 10px;
    fill: var(--text-color);
}

.contact-text {
    width: 600px;
}

.item {
    width: 600px;
    font-size: 18px;
    line-height: 35px;
    text-align: justify;
    font-weight:lighter;
    margin-left: auto;
    margin-right: auto;
    font-family: default-font;
}

.category {
    width: 700px;
    font-size: 19px;
    margin-top: 25px;
    line-height: 35px;
    text-align: justify;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    font-family: default-font;
}

.more {
    text-align: center;
    padding-top: 50px;
}

.more img {
    margin-bottom: -30px;
    margin-top: 10px;
}

.more em {
    font-size: 14px;
}