* {
    font-family: Cocogoose, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Cocogoose, sans-serif;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.cont {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    align-content: center;
    justify-content: center;
    margin-top: 100px;
}

a {
    color: #363636;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

@media (max-width:700px) {
    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .cont {
        padding: 10px;
    }

    .cont h1 {
        font-size: 18px;
    }

    .cont p {
        font-size: 10px;
    }
}