/* ELEMENTS */

#topBtn {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 3rem;
    z-index: 99;
    font-size: inherit;
    border: none;
    outline: none;
    background-color: var(--primary);
    color: var(--white);
    cursor: pointer;
    padding-inline: 1rem;
    padding-block: 0.6rem;
    border-radius: 100%;
    font-size: 2rem;
}
  
#topBtn:hover {
    background-color: var(--accent);
}

.backBtn {
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem;
    margin-bottom: 3rem;
    cursor: pointer;
    border-radius: 3rem;
}

.backBtn:hover {
    background-color: var(--accent);
}

/* STARTSEKTION */

.profile {
    display: none;
    border-radius: 100%;
}

.profileMobile {
    display: block;
    max-width: 45%;
    border-radius: 100%;
    margin-inline: auto;
}

/* PORTFOLIOSEKTION */

.imageText {
    font-weight: 300;
    font-size: 1rem;
    /* position: absolute; */
    /* bottom: 1rem; */
    /* background-color: var(--white); */
    padding-bottom: 0.5rem;
    /* width: 100%; */
    text-align: center;
}

.fa-arrow-up-right-from-square {
    font-size: 1rem;
}

/* KONTAKTSEKTION */

.kontaktInfo {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kontaktInfo > * > i {
    margin-inline-end: 0.2rem;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social > i:hover {
    cursor: pointer;
    color: var(--accent);
    transform: scale(1.1, 1.1);
    transition: all 0.45s ease-in-out;
}

.social a {
    display: inherit;
    text-decoration: none;
    color: var(--primary);
    font-size: 2rem;
}

.social a:hover {
    cursor: pointer;
    color: var(--accent);
    transform: scale(1.1, 1.1);
    transition: all 0.45s ease-in-out;
}

.social a::after {
    height: 0rem;
}

/* MEDIA QUERIES */

@media screen and (min-width: 700px) {
    .profile {
        display: block;
        max-width: 30%;
    }

    .profileMobile {
        display: none;
    }

    .kontaktInfo {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
}

/* @media screen and (min-width: 1080px) {

} */