@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');

.centered-text {
    text-align: center;
}

.jetbrains-font {
    font-family: 'JetBrains Mono', monospace;
}

body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(90deg, #001F3F, #00AFF0);
    background-size: 200% 200%;
    animation: gradientAnimation 6s infinite alternate;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}


.glow-intro{
    color: #FFFF99;
    text-shadow: 0px 0px 10px #FFFF99;
}

html, body{
    height: 100%;
    margin: 0;
    padding: 0;
}

.custom-image{
    position: fixed;
    bottom: 0px;
    right: 10px;
    width: 400px;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.content{
    position: relative;
    z-index: 1;
}

.navbar{
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    width: 100%;
    background: #333;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.navbar a{
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

.navbar a:hover{
    background-color: #555;
    border-radius: 5px;
}

.menu{
    display: flex;
    gap: 100px;
}

body{
    padding-top: 60px;
}

.left-tabbed-text{
    text-align: left;
    padding-left: 500px;
}

.email-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #00AFF0;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    margin-left: 5px;
}

.email-btn:hover {
    background-color: #0088CC;
}

.email-container {
    display: flex;  
    align-items: center; /* Aligns text and button vertically */
    gap: 15px; /* Adds space between the text and button */
}

.spaced-text{
    margin-bottom: 100px;
}

.bigger-text {
    font-size: 28px; 
    font-weight: bold;  
    background-image: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, violet);
    background-size: 300% 300%;
    color: transparent; /* Hides the original text color */
    background-clip: text; 
    -webkit-background-clip: text; 
    animation: rainbow 4s linear infinite; /* Infinite animation */
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


