@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400&display=swap');

*{
    box-sizing: border-box;
}

body {
    background:hsl(217, 54%, 11%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.card {
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    margin-top: 100px;
    max-width: 350px;
    padding: 25px;
    border-radius: 20px;
    background:hsl(216, 50%, 16%);
}

.main-img {
    width: 100%;
    border-radius: 15px;
}

.white-text {
    color: hsl(0, 0%, 100%);
}

.cyan-text {
   color: hsl(178, 100%, 50%); 
}

.blue-text {
    color: hsl(215, 51%, 70%);
}

.position div {
    display: inline-block;
    margin-bottom: 5px;
}

.float {
    float: right;
}

hr {
    border: 1px solid hsl(215, 32%, 27%);
    margin-bottom: 15px;
}

.creator-picture {
    width: 12%;
    border: 1px solid white;
    border-radius: 50%;
}

.creator-text{
    font-weight: 400;
    margin-left: 15px;
    position: relative;
    top: -12px;
}

.attribution { font-size: 15px; text-align: center; }
.attribution a { color: hsl(228, 51%, 53%); }

@media screen and (min-width:320px) and (max-width:425px) {
    .main-img {
        width: 100%;
    }

    .card {
        font-size: 18px;
        font-weight: 400;
        font-family: 'Outfit', sans-serif;
        margin-top: 20px;
        width: 300px;
        padding: 25px;
        border-radius: 20px;
        background:hsl(216, 50%, 16%);
    }
    
}