@import url('https://fonts.googleapis.com/css2?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&display=swap');

body{
    margin: 0;
    padding: 0;
    background-color: hsl(0, 0%, 97%);
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
}

header h1:first-child {
    font-weight: 100;
    margin-bottom: 0;
}

header h1:nth-of-type(2) {
    margin-top: 5px;
}

section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 1440px;
    gap: 25px;
}

header p {
    margin-bottom: 50px;
}

.box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 262px;
    border: 1px solid white;
    background-color: white;
    border-radius: 5px;
    padding: 5px 20px;
    box-shadow: 2px 2px 10px gray;
}

h3 {
    margin-bottom: 0;
}

p {
    margin-bottom: 30px;
}

.supe {
   border-top: 4px solid hsl(180, 62%, 55%);
}

.twins{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team{
    border-top: 4px solid hsl(0, 78%, 62%);
}

.karma {
    border-top: 4px solid hsl(34, 97%, 64%);
}

.calc{
    flex-shrink: 1.3;
    border-top: 4px solid hsl(212, 86%, 64%);
}

img {
    width: 40px;
    align-self: flex-end;
    margin-bottom: 20px;
}

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

@media (max-width:650px) {
    section{
        display: flex;
        flex-direction: column;
    }

    
    .box {
        max-width: 80%;
        align-self: center;
    }


    
}