@import url('source/keyframes.css');
@import url('source/mainHere.css');

img {
    pointer-events: none;
    user-select: none;
}

.TitleElements {
    position: absolute;
    top: 200px; right: 200px;
    width: 45%; height: 400px;
}

.TitleElements * {
    opacity: 0;
    transform: translateY(100px);
}

.TitleElements h1 {
    font-size: 5vw;
    font-weight: 700;
    animation: appearProcessFORALL 1.5s 0.1s forwards;
    background: linear-gradient(90deg, var(--DarkGreyColor), var(--TextDarkSecondColor));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.TitleElements h2 {
    text-transform: uppercase;
    font-size: 3vw;
    padding: 0; margin: 10px 0;
    font-weight: 750;
    animation: appearProcessFORALL 1.5s 0.3s forwards;
    color: var(--TextDarkSecondColor);
}

.TitleElements p {
    color: var(--TextDarkSecondColor);
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    animation: appearProcessFORALL 1.5s 0.5s forwards;
}

.TitleElements button {
    margin: 20px 0;
    padding: 9px 14px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--TextDarkSecondColor);
    color: var(--TextDarkSecondColor);
    font-size: 18px;
    animation: appearProcessFORALL 1.5s 0.7s forwards;
    transition: 0.2s ease-in-out;
}

.TitleElements button:hover {
    cursor: pointer;
    background-color: var(--TextDarkSecondColor);
    color: white;
}

.BodyImage:not(.lang) {
    height: 100%; width: auto;
    position: absolute;
    bottom: 0; left: 100px;
}

.lang {
    opacity: 0;
    transform: rotate(0) scale(0) translateY(-100px);
}

.BodyImage.javascript {
    height: 150px; width: auto;
    position: absolute;
    top: 250px; left: 500px;
    z-index: -1;
    animation: appearJS 0.7s forwards;
}

.BodyImage.php {
    height: 100px; width: auto;
    position: absolute;
    bottom: 150px; left: 600px;
    animation: appearPHP 1s forwards;
}

.BodyImage.python {
    height: 180px; width: auto;
    position: absolute;
    bottom: 250px; left: 20px;
    z-index: -1;
    animation: appearPY 1.2s forwards;
}

.darkBackground {
    width: 110%; height: 350px;
    position: absolute;
    left: -5%; bottom: -270px;
    background-color: var(--DarkGreyColor);
    transform: rotate(7deg);
}