
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

body {
    background-color: rgb(42, 75, 119);
    /*color: #3498db;*/
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.container {
    width: 60%;
    margin: 0 auto;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.profile {
    width: 250px;
    float: left;
}

.profile-image {
    width: 100%;
    height: auto;
    
}

.title{
    float: left;
    margin-top: 50px;
    margin-left: 50px;
}

.heading-name {
    padding-bottom: 10px;
    font-weight: 700;
}

.heading-title {
    padding-top: 5px;
    font-weight: 400;
}

.heading-title a {
    text-decoration: none;
    /*color: #3498db;*/
    color: #fff;
}

.list {
    text-align: center;
    background-color: #0E233F;
    display: flex;
    justify-content: space-around;
}

.item {
    list-style: none;
}

.link {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 180%;
}

section {
    /*background-color: #3498db;*/
    background-color: #0E233F;
    color: #fff;
    padding: 30px 20px;
}

.heading-section {
    padding-bottom: 20px;
    font-weight: 700;
    text-decoration: underline;
}

.section-text {
    font-size: 130%;
    letter-spacing: 1px;
    text-align: justify;
}

.section-text-sub {
    font-size: 130%;
    padding: 20px 0;
}

.p-list {
    font-size: 110%;
    padding-left: 20px;
}

.p-item {
    padding-bottom: 10px;
}

.p-link {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    font-size: 110%;
}

.p-link:hover {
    border-bottom: 1px solid #fff;
}

.t-list {
    padding-left: 20px;
    padding-top: 20px;
    list-style: none; /* Optional: removes bullet points */
}

.t-item {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    font-size: 130%;
}

.t-label {
    min-width: 150px; /* Adjust this value as needed for alignment */
    margin-right: 10px; /* Space between label and link */
}

.t-link {
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    font-size: 100%;
}

.t-link:hover {
    border-bottom: 1px solid #fff;
}

/*-------MEDIA QUERIES------*/

 /* Extra small devices (phones, 600px and down) */
 @media only screen and (min-width: 200px) {

    .container {
        width: 100%;
    }

    .profile {
        width: 150px;
    }

    .title {
        margin-top: 5px;
        margin-left: 5px;
        padding-bottom: 20px;
    }

    .list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .item {
        padding: 0 20px;
    }

    .section-text {
        font-size: 130%;
        letter-spacing: 1px;
        text-align: start;
    }
 }

 /* Extra small devices (phones, 600px and down) */
 @media only screen and (min-width: 580px) {

    .container {
        width: 95%;
    }

    .profile {
        width: 150px;
    }

    .title {
        margin-top: 5px;
        margin-left: 5px;
        padding-bottom: 20px;
    }
    .list {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .item {
        padding: 0px;
    }
    .section-text {
        text-align: justify;
    }
 }

 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 680px) {

    .container {
        width: 90%;
    }

    .profile {
        width: 180px;
    }

    .title {
        margin-top: 5px;
        margin-left: 5px;
        padding-bottom: 20px;
    }
 }
 
 /* Medium devices (landscape tablets, 768px and up) */
 /*
 @media only screen and (min-width: 790px) {
    .container {
        width: 75%;
    }
    .profile {
        width: 150px;
    }

    .title {
        margin-top: 5px;
        margin-left: 5px;
    }
 }
 */
 /* Large devices (laptops/desktops, 992px and up) */
 @media only screen and (min-width: 982px) {
    .container {
        width: 75%;
    }

    .profile {
        width: 250px;
    }
    .title{
        margin-top: 50px;
        margin-left: 50px;
    }
 }
 
  /* Extra large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1360px) {
    .container {
        width: 70%;
    }
    .profile {
        width: 250px;
    }
 }

 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1440px) {
    .container {
        width: 60%;
    }
    .profile {
        width: 250px;
    }
 } 
