@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: rgb(0, 0, 27);
    color: white;
    font-family: 'Poppins', sans-serif;
}

h4{
    margin: 10px;
}

.container{
    width: 90%;
    height: auto;
    padding: 50px;
    margin-top: 10px;
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1 {
    flex-basis: 30%;
}

.about-col-1 img {
    width: 100%;
    border-radius: 15px;
}

.about-col-2 {
    flex-basis: 65%;
}

.sub-title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

p{
    font-size: 15px;
}

.tab-titles {
    display: flex;
    margin: 20px 0px 25px;
}

.tab-links {
    margin-right: 50px;
    font-size: 15px;
    font-weight: 500px;
    cursor: pointer;
    position: relative;
}

.tab-links::after {
    content: '';
    width: 0;
    height: 3px;
    background: rgb(146, 74, 214);
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after {
    width: 50%;
}

.tab-contents ul li {
    font-size: 15px;
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span {
    color: rgb(146, 74, 214);
    font-size: 14px;
}

.tab-contents {
    display: none;
}

.tab-contents.active-tab {
    display: block;
}

#resume{
        display: flex;
        width: 30%;
        align-items: center;
        justify-content: center;
}

.btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: rgb(146, 74, 214);
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
  }

.btn a{
    text-decoration: none;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}
  

@media only screen and (max-width: 600px) {
    .container {
        padding: 30px;
    }

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
        align-items: center;
    }

    .sub-title {
        font-size: 40px;
        font-weight: 600;
        color: #fff;
    }

    .tab-links {
        margin-right: 20px;
    }

    #resume {
        width: 100%;
    }
}

