* {
    font-family: poppins;
}

a {
    text-decoration: none;
    color: black;
}

.techno:hover {
    width: 3rem;
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.techno {
    transition: width 0.3s ease-in-out;
}

body {
    background-image: linear-gradient(0deg, rgba(121,0,65,1) 0%, rgba(11,36,71,1) 61%);
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

html {
    height: 100%;
}

main {
    width: 520px;
    border-radius: 20px;
    background-color: rgb(245, 244, 255);
    display: flex;
    padding: 35px;
    z-index: 10;
}

#me {
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

#skills {
    margin-left: -7px;
}

#left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 34px;
}

#contact {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

#contact > a {
    display: flex;
    align-items: center;
}

#mail {
    margin: 0 17px;
}

.techno {
    margin: 0 7px;
    width: 40px;
}

.skills-top {
    margin-bottom: 14px;
}

#line {
    margin-bottom: 14px;
    margin-top: 0;
}

h2 {
    margin-bottom: 6px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 400;
}

h1 {
    margin: 0;
    font-size: 25px;
    font-weight: 500;
}

h3 {
    margin-bottom: 9px;
    margin-top: 9px;
    font-size: 18px;
    font-weight: 200;
}

@media screen and (max-width: 630px) {
    main {
        flex-direction: column;
        align-items: center;
        width: auto;
    }

    #left {
        display: flex;
        flex-direction: row;
        margin: 0;
        margin-bottom: 40px;
    }

    #mail {
        margin: 14px;
    }

    #contact {
        flex-direction: column;
        margin: 0;
        margin-right: -10px;
    }
}