@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;800&display=swap');

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-display: swap;
    background-color: rgb(39, 40, 44);
    /*background-image: url(images/bg.png);*/
/*    color: #d1d5db;*/
    color: rgba(255, 255, 255, 0.6);

    /*background-color: rgb(245, 245, 251);
    color: rgb(51, 51, 51); /**/


    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 35px;
    line-height: 1.75;
    padding-bottom: 50px;
}

h1,
h2,
h3,
h4,
h5{}
strong {
    color: #f9fafb; /**/
}

h1 {
    font-weight: normal;
    /*margin-bottom: -12px;*/
    line-height: 1.2;
}

h2 {
    font-weight: normal;
    border-bottom: 1px solid #1f2937;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 1.2;
}

p {
    text-align: justify;
    margin-top: 15px;
}

p:last-child {
    margin-bottom: 0;
}

a {
  /*  color: #a5b4fc;*/
    color: rgb(255, 102, 51);
    font-weight: bold;
}

.container {
   /* background: rgba(255, 255, 255, 0.02);*/
    border-radius: 10px;
    padding: 30px;
    max-width: 900px;
    margin: 0 40px;
    display: flex;
}

.profile-pic {
    max-width: 200px;
    border-radius: 10%;
    /*border: 5px solid rgb(50, 50, 50);*/
     box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.7);
}

.text {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #4b5563;
}

.personal-projects {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.personal-project-link{
    /* max-width: 49%; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 15px; */
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.25s;
    background-color: rgba(255, 255, 255, 0.1);
}

.personal-project-link:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.personal-project-link img {
    flex-grow: 0;
    image-rendering: crisp-edges;
    max-height: 65px;
}

.centered {
    display: flex;
    justify-content: center;
}

footer {
    font-size: 14px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 850px) {
    .container {
        flex-direction: column;
        margin: 10px;
        padding: 15px;
    }
    body {
        padding-top: 0px;
    }
    .text {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }
    figure {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    h1 {
        text-align: center;
        margin: 10px 0;
    }
    h2 {
        text-align: center;
        margin: 10px 0;
    }
}
