body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}
.container {
    display: flex;
    /* max-width: 600px; */
    background: white;
    /* padding: 20px; */
    /* border-radius: 10px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.logo-img {
    /* width: 200px; */
    height: 350px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* margin-right: 20px; */
}
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 0 -20px;
}
.info {
    display: flex;
    flex-direction: column;
    padding: 50px 30px 30px;
    background-color: #0c033b;
    color: white;
}
.info h2 {
    margin: 0 0 10px;
}
.info p {
    margin: 5px 0;
}
.info a {
    color: white;
    text-decoration: none;
}
.info div {
    display: flex;
    justify-content: space-between;
}
.info div div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.info div img{
    width: 100px;
    height: 100px
}

@media (max-width: 1000px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 360px;
    }

    .logo-img {
        width: 100%;
        height: 100%;
        margin-right: 0;
        /* margin-bottom: 10px; */
    }

    .info {
        text-align: left;
    }
}
/* 
@media (max-width: 480px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 360px;
    }

    .logo-img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .info {
        text-align: left;
    }
} */
