@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&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&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0px;padding: 0px;box-sizing: border-box;  
    font-family: "Manrope", sans-serif; color: hsl(217, 19%, 35%);
    
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(210, 46%, 95%);
}

.main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 15px 15px lightgray;
    border-radius: 10px;
}

.main > * {
    align-items: center;
    justify-content: center;
}

.picture > img {
    height: 250px;
    width: 250px;
}

.content {
    height: 250px;
    width: 400px;
    padding: 25px;
    line-height: 120%;
    background-color: white;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
}

.authorpic > img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
}

.share {
    border-radius: 100%;
    background-color: hsl(210, 46%, 95%);
    padding: 10px;
    align-items: center;
    justify-content: center;
}

p {
    font-size: 13px;
}

.socials {
    display: none;
    flex-direction: row;
    padding: 15px;
    gap: 10px;
    color: white;
    background-color: hsl(217, 19%, 35%);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 4px 15px 15px lightgray;
        border-radius: 10px;
    }

    .picture > img {
        height: 300px;
        width: 300px;
    }

    .content {
        height: 300px;
        width: 300px;
        padding: 25px;
        line-height: 120%;
        background-color: white;
    }
}