@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --grey1: hsl(0, 0%, 20%);
    --grey2: hsl(0, 0%, 12%);
    --grey3: hsl(0, 0%, 8%);
    --para: hsl(75, 94%, 57%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--grey3);
    max-height: 812px;
    font-family: 'inter', Georgia, 'Times New Roman', Times, serif;
    overflow-x: hidden; 
}

.container {
    width: 324px;
    height: 100%;
    background-color: aliceblue;
    margin: 117px auto;
    border-radius: 6px;
    background-color: var(--grey2);
}

.info img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    object-fit: fill;
    border-radius: 100%;
    padding-top: 21px;
}

.info h4 {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    margin-top: 30px;
    color: hsl(0, 0%, 100%);
}

.location {
    margin-top: 15px;
    text-align: center;
    color: var(--para);
    font-weight: 600;
    font-size: 14px;
}

.com {
    font-size: 14px;
    text-align: center;
    margin-top: 21px;
    color: hsl(0, 0%, 100%);
}

.socials{
margin-top: 26px;
text-align: center;
list-style-type: none;
}

.media {
    padding: 10px;
    background-color: aqua;
    list-style-type: none;
    text-decoration: none;
}

.socials button{
    width: 280px;
    height: 50px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: none;
    background-color: var(--grey1);
    color:  hsl(0, 0%, 100%);
    font-weight: 700;
}

.socials button:hover{
    background-color: var(--para);
    color: var(--grey2);
}

.socials button:active{
    background-color: var(--para);
    color: var(--grey2);
}

@media (min-width: 1440px){
    .container {
        width: 384px;
        height: 100%;
    }
    .info img{
        width: 93px;
        margin-bottom: 31px;
    }

    .socials button{
        width: 300px;
        height: 44px;
    }














}