@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Delius", cursive;
    scroll-behavior: smooth;
}

body {
    background-color: #222831;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 0.5rem;
}

.navigation ul {
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

.navigation a{
    text-decoration: none;
    color: white;
}

.navigation a:hover {
    color: #00adb5;
}

hr {
    opacity: 10%;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
}

.arrow {
    position: absolute;
    transform: translateX(-5.5rem) translateY(1.5rem);
}

.heroSub {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.name {
    font-size: 3rem;
    color: #eeee;
}

.title {
    font-size: 3rem;
    color: #00adb5;
}
.herobott {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.hireMe {
    background-color: #00adb5;
    color: #eeeeee;
    border-radius: 24px;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.cv {
    background-color: rgba(57, 62, 70, 0.75);
    color: white;
    border-radius: 24px;
    padding: 0.5rem 1.5rem;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    text-decoration: none;
}

.aboutMe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5rem auto;
    max-width: 1200px;
    gap: 10rem;
}

.textC {
    display: flex;
    flex-direction: column;
}

.textT {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.aboutN {
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
}

.aboutT {
    display: flex;
    align-items: center;
    color: #00adb5;
    flex-direction: column;
}

.pra {
    font-size: 1rem;
    color: rgba(238, 238, 238, 0.75);
}

.works {
    background-image: url(assets/svg/background.svg);
    padding: 10rem 10rem;
    margin: 5rem 0rem;
}

.worksC {
    display: flex;
    flex-direction: column;
    display: flex
    justify-content: space-between;
    align-items: left;
    margin: 5rem auto;
    max-width: 1200px;
}

.proT {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    font-size: 2rem;
}

.works ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style-type: none;
    align-items: center;
    justify-content: space-between;
}

.works li {
    border-radius: 16px;
    background-color: rgba(57, 62, 70, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem 4rem;
}

.works li img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: transform 0.2s;
}

.works li :hover {
    transform: scale(1.5);
}

.contactC {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5rem;
    gap: 20rem;
}

.contact h3, .contact a {
    color: white;
    text-decoration: none;
}

.email, .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: rgba(57, 62, 70, 0.5);
    backdrop-filter: blur(4px);
    padding: 1rem;
    t
}

.social img {
    width: 24px;
    height: 24px;
}

footer {
    color: white;
    padding: 2rem;
    text-align: center;
}

.aboutNN {
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
}

.aboutTT {
    display: flex;
    align-items: center;
    color: #00adb5;
    flex-direction: column;
}

.contactT {
    display: flex;
    gap: 5px;
    justify-content: center;
}
