* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}

#myphoto {
    position: absolute;
    margin: 152px 50px 30px 170px;
    height: 400px;
    border-radius: 30%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: #f4f4f4;
}

header h2 span {
    color: #04478e;
}

.logo {
    font-size: 32px;
    color: #555;
    cursor: default;
}

.menu a {
    font-size: 18px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    margin-right: 40px;
    transition: .4s;
}

.menu a:hover {
    color: #001f3f;
}


a.active {

    padding: 8px 15px;
    background: #001f3f;
    border-radius: 10px;
    color: white;
    transition: .4s;

}
a.active:hover {
    color: #001f3f;
    background: transparent;
}
.btn-talk {
    color: beige;
    text-decoration: none;
    padding: 8px 35px;
    background: #001f3f;
    border-radius: 10px;
    border: 2px solid #001f3f;
    font-weight: 500;
    transition: .4s;
}

.btn-talk:hover {
    color: #001f3f;
    background: transparent;
}


.home-info {
    position: relative;
    padding: 200px 100px 0px 50%;
    text-align: left;
}

.info {
    color: #555;
}

.info h2 {
    font-size: 38px;
}

.info h2 span {
    color: #023e7a;
    text-decoration: underline #53a9ff;
    text-shadow: 0px 0px 4px #53a9ff;

}

.info h4 {
    font-size: 20px;
    padding-top: 2px;
    color: rgb(3, 95, 170);
    text-shadow: 3px 3px 5px #53a9ff;
}

.info p {
    padding-top: 10px;
    line-height: 25px;
}

.skill {
    margin-top: 20px;
    border-top: 2px #023e7a solid;

}

.skill>h2 {
    margin-top: 15px;

}

table,
tr,
td {
    margin-top: 10px;
    border: 3px solid black;
    padding: 5px;
}

td:first-child {
    color: #04478e;
    font-weight: bold;
}

table {
    border-collapse: collapse;
}

.work {
    margin: 50px 100px 0px 100px;
    padding: 20px 20px 20px 20px;
    box-shadow: 3px 4px 10px #04478e;
}

.work div h2 {
    margin-bottom: 20px;
}

.work img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.work div h3 {
    margin-top: 0px;
    font-weight: normal;
}

.work div p {
    margin-left: 154px;
    color: gray;
}

.work div h5 {
    margin-top: 10px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.work div ul {
    margin-left: 30px;
}

.bold {
    font-weight: bold;
    color: #023e7a;
    font-style: italic;
}

ul {
    line-height: 150%;
}

.footer div {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer,
h5,
a {
    margin: 10px;
    font-size: 20px;
}

.footer p {
    border-top: 1px solid #001f3f;
    text-align: center;
    font-size: 12px;
    padding-top: 10px;
}