@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Roboto:wdth,wght@75..100,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arimo", sans-serif;
}

body {
  background-color: #F3F3F3;
  color: #374258;
  min-height: 100vh;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}
.left-section {
    display: grid;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
}
.background {
    background-color: #374258;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    position: relative;
    z-index: -1;
}

img {
    width: 220px;
    position: absolute;
    right: 2px;
    bottom: 5px;
    object-fit: contain;
    z-index: 1;
}

h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.text-design {
    background-color: #f47b83;
    padding: 1rem;
    border-radius: 50%;
 
}

.card{
    border: 2px solid #C4C4C4;
    border-radius: 12px;
    padding: 2rem;
    line-height: 1.5;
    margin-bottom: .5rem;
    text-align: justify;
    box-shadow: 0 10px 30px rgba(20, 40, 50, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease;
    font-size: 0.9rem;
}


.card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(240, 4, 169, 0.18);
}


.interests-list{
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.resume-btn{
    border-radius: 8px;
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #374258;
    color: #FFFFFF;
    width: fit-content;
    text-decoration: none;
    text-align: center;
    margin-top: 1em;
}


footer {
    border-top: 2px solid #C4C4C4;
    color: #374258;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2.5rem;
    font-size: .8rem;
}

.social-links a {
    color: #374258;
    margin-right: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
}

.social-links a:hover {
    color: #f47b83;
}



/* Media query for tablets (768px and above) */
@media (min-width: 768px) {
    .container {
        grid-template-columns: 1fr 2fr;
        padding: 2rem;
    }
    .left-section {
        padding: 2rem;
    }
    .background {
        width: 250px;
        height: 250px;
    }
    img {
        width: 280px;
        right: 2px;
        bottom: 5px;
    }
    h1 {
        font-size: 3rem;
        text-align: right;
        margin-bottom: 1.5rem;
    }
    .card {
        padding: 1.25rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    footer {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 17em;
        font-size: 1rem;
    }
}


/* Media query for desktops (1024px and above) */
@media (min-width: 1024px) {
    .container {
        padding: 3rem;
        height: 95vh;
    }
    .left-section {
        padding: 3rem;
    }
    .background {
        width: 300px;
        height: 300px;
    }
    img {
        width: 350px;
        right: 3px;
        bottom: 8px;
    }
    h1 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    .card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    footer {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 17em;
        font-size: 1rem;
    }
}