/* Variables */
:root {
    --primary-color: #00f2ff;
    --hover-color: rgb(0, 89, 255);
    --text-shadow: rgba(0, 0, 0, 0.9);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    background: none;
    color: white;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/aboutme.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: -2;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #f0f0f0;
    text-shadow: 2px 2px 10px var(--text-shadow);
}

.welcome-title {
    font-size: 2.5em;
    animation: fadeIn 1.5s ease-in-out;
}

.welcome-text {
    font-size: 1.2em;
    margin: 10px 0;
    animation: fadeIn 2s ease-in-out;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 7px 15px;
    font-size: 1.1em;
    color: #fff;
    background-color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 2.5s ease-in-out;
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.1);
}

a.portfolio, a.ichtus {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 23px;
    text-shadow: 2px 2px 10px var(--text-shadow);
}

a.portfolio:hover, a.ichtus:hover {
    color: var(--hover-color);
}

.contact-info {
    font-family: 'Lora', serif;
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 25px;
    font-size: 16px;
    z-index: 1;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    padding: 20px;
}

.contact-info a:hover {
    color: var(--primary-color);
}