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


* {
    box-sizing: border-box;
}

body {

    display: flex;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
}

.container {
    display:flex;
    flex-direction: column;
    width: 375px;
    padding: 56px 30px 46px 29px;
    align-items: center;
}

.title {
    display:flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-size: 24px;
    font-weight: 275;
    line-height: 10%
}

h1.bold {
    font-weight: 600;
}

.card {
    display:flex;
    flex-direction: column;
    width: 314px;
    height: 250px;
    padding: 32px;
    margin: 8px;
    color: #6A7178;
    border-radius: 5px 5px 0 0;
    margin-bottom: 32px;
    box-shadow: 0px 15px 30px -11px rgba(131, 166, 210, 0.50);
    position: relative;
}

.role {
    font-size: 20px;
    font-weight: 600;
}

img {
    margin-top: 32px;
    display: block;
    /* margin-left: auto; */
    width: 64px;
    height: auto;
    position: absolute;
    bottom: 38px;
    right: 32px;
}

.title, .role {
    color: #4D4F62;
}

.team {
    border-top: solid #EA5454 4px;
}

.super {
    border-top: solid #44D3D2 4px;
}

.karma {
    border-top: solid hsl(34, 97%, 64%) 4px;
}

.calc {
    border-top: solid #549EF2 4px;
}

@media (min-width: 600px) {
    .title {
        width: 500px;
        margin-bottom: 74;
    }

    .information {
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .center {
        display: flex;
        gap: 32px;
    }
    
}

@media (min-width: 1050px) {
    .title {
        width: 500px;
        margin-bottom: 74;
    }

    .information {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .center {
        display: flex;
        flex-direction: column;
    }

    .center .card {
        margin-bottom: 0;
        
    }

}