@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital@0;1&display=swap');

/*
font-family: 'JetBrains Mono', monospace;
background-color: #060522;
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
    color: white;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #060522;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    padding: 7rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content:space-around;
}

header .profile img{
    border: 0.4em solid #332f9c;
    width: 16rem;
    border-radius: 50%;
}

header .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    font-size: 1.2rem;
}

header .text .line {
    width: 100%;
    height: 0.1rem;
    background-color: #332f9c;
    margin: 1rem 0;
    
}

.section-line {
    width: 70%;
    padding: 0.1rem 0;
    border-radius: 50%;
    background-color: #332f9c;
    margin: 1rem 0;
    
}

.about {
    width: 50%;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about h1 {
    font-size: 1.8rem;
    margin: 2rem 0;
}

.about a {
    transition: 0.2s;
}

.about a:hover {
    color: #332f9c;
}

.contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #040316;
}

.contact a {
    font-size: 2rem;
    margin: 1.2rem 3rem;
    padding: 0.3rem 0.75rem 0.15rem 0.75rem;
    border-radius: 0.1rem;
    transition: 0.1s;
}

.contact a:hover {
    transform: scale(1.15);
    background-color: #332f9c;
}

@media only screen and (max-width: 600px) {
    * {
        flex-direction: column;
    }
     
    header .text {
        align-items: center;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about {
        width: 75%;
    }

    .contact {
        align-items: center;
        padding: 1rem 0;
        flex-direction: row;
    }

    .contact a {
        font-size: 1.6rem;
        margin: 0 0.75rem;
        padding: 0.25rem 0.75rem 0 0.75rem;
    }
}
