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

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

main{
    padding:15px;
    margin: 30px;
    background-color: hsl(0, 0%, 100%);
    width: 300px;
    border-radius: 15px;
}

.card img {
    max-width: 100% ;
    border-radius: 10px;
}

h1, p {
    text-align: center;
}

h1{
    font-size: 21px ;
    padding: 15px 12px;
    color: hsl(218, 44%, 22%);
    font-weight: 700;
}

p{
    font-size: 15px ;
    padding: 0 12px 15px 12px;
    font-weight: 400;
}

.attribution {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}

a {
    color:#0a17a6 ;
}

a:hover{
    color:#817ed3;
}

@media (min-width:600px){
    body{
        height:100vh;
    }

    main{
        margin-top: 0;
    }
}

@media (max-width: 768px){
    .attribution{
        display: none;
    }
}

