@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: rgb(19, 17, 47);
    color: white;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.116);
}

.wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: white;
    background-color: #142f5e;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

nav button::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    opacity: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.1));
    transition: all .3s ease-in-out;
}

nav button:hover::before {
    left: 0%;
    opacity: 1;
}

.wrap h2 {
    font-weight: normal;
    font-size: 16px;
    cursor: pointer;
}

.container {
    padding: 30px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.container p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
}

.container img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

@media screen and (max-width:600px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }
}
@media screen and (max-width:400px) {
    .container img{
        width: 200px;
        height: 200px;
    }
}