::-webkit-scrollbar {
    width: 8px;
    background-color: #1c1b22;
}

::-webkit-scrollbar-thumb {
    background-color: silver;

    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}

::selection {
    color: white;
    background-color: rgba(158, 43, 85, 0.75);
}

* {
    margin: 0;
    padding: 0;
}

html {
    position: relative;
    height: 100%;
    width: 100%;
    scrollbar-color: silver #1c1b22;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

body {
    position: relative;
    height: 100%;
    width: 100%;
    background: #1c1b22;
    color: white;
}

main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#solpanel {
    position: fixed;
    min-height: 100%;
    width: 30%;
    background-color: #ee075f;
    left: 0;

    animation: solpanelani 60s linear;
    animation-iteration-count: infinite;
}

#kart {
    width: 80vw;
    min-height: 70vh;
    display: flex;
    border-radius: 15px;
    background-color: #1c1b22;
    outline: 3px solid #ee075f;
}

#kartsol {
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    border-right: 1px solid #ee075f;
    position: relative;
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

#kartsolfoto {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 15px;
    z-index: 100;
}

#kartisimler {
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 15px;
    box-sizing: border-box;
    padding: 0 20px 0 20px;
}

#kartlinkler {
    display: flex;
    width: 100%;
    padding-bottom: 10px;
    justify-content: space-evenly;
}

#kartlinkler a.yazi {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5em;
    color: #3cd3ff;
}

#kartlinkler svg {
    width: 32px;
    height: 32px;
}

#kartsag {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-indent: 10px;
}

#kartsag h1 {
    line-height: 2em;
}

#kartsag p {
    font-size: 1.4em;
    line-height: 1.3em;
    margin-bottom: 30px;
}

#pfp-tutucu {
    display: flex;
    justify-content: center;
    max-width: 80%;
    height: auto;
    box-sizing: border-box;
    padding: 15px;
}

#pfp {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    user-select: none;
}

h1, h2 {
    text-align: center;
    line-height: 1.3em;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.6em;
    color: grey;
}

#email {
    text-decoration: none;
    color: black;
    background-color: #3cd3ff;
    border-radius: 15px;
    text-indent: 0;
    padding: 15px 30px 15px 30px;
}

@keyframes solpanelani {
    20% {
        background-color: #ee075f;
    }

    25% {
        background-color: #1c1b22;
    }

    40% {
        background-color: #1c1b22;
    }

    45% {
        background-color: #ee075f;
    }
}

@media only screen and (max-width: 1000px) {
    #solpanel {
        position: absolute;
        height: 33%;
        width: 100%;
        top: 0;
    }

    #kart {
        width: 95vw;
        position: absolute;
        top: 35px;
        flex-direction: column;
    }

    #kartsol {
        border: 0;
        border-radius: 0;
    }

    #kartsag {
        padding-top: 15px;
        padding-bottom: 25px;
    }

    #kartlinkler {
        margin-top: 4%;
        margin-bottom: 4%;
    }

    #kartlinkler svg {
        width: 48px;
        height: 48px;
    }

    #kartsag h1 {
        line-height: 1em;
        margin: 8vh 0 5vh 0;
    }

    #kartsag p {
        line-height: 32px;
    }


    #pfp {
        max-width: 75%;
        margin-top: 12%;
    }

}