
@font-face {
    font-family: "Rubik_light";
    src: url("../fonts/Rubik-Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: 'Rubik_SB';
    src: url('../fonts/Rubik-SemiBold.ttf');
    font-weight: 600;
}

body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

.container{
    width: 350px;
    margin: 0px auto;
    height: 500px;
    border-radius: 15px;
    box-shadow: 1px 1px 10px grey;
}

header{
    background-image: linear-gradient(to right, #002d71, #283697, #5639bb, #8933da, #c110f2);
    height: 100px;
    border-radius: 15px 15px 0px 0px;
    overflow: auto;
}

img{
    display: block;
    width: 130px;
    height: 130px;
    object-position: top;
    object-fit: cover;
    margin: -50px auto 0px;
    border: 5px solid white;
    border-radius: 1000px; 
    box-shadow: 1px 1px 10px grey;   
    }

h1{
        font-family: "Rubik_SB";
        text-align: center;
        margin-bottom: 0px;
    }

article{
        font-family: "Rubik_light";
        text-align: justify;
        line-height: 25px;
        padding: 15px;
    }
   

i{
        text-shadow: 1px 1px 3px grey;
    }


.star, .thmb {
        border: none;
        background: none;
        font-size: 30px;
        margin-left: 55px;
    }


.msg{
        width: 300px;
        height: 50px;
        background-color: limegreen;
        color: white;
        font-family: "Rubik_light";
        font-size: 20px;
        border: none;
        border-radius: 5px;
        box-shadow: 1px 1px 5px grey;
        padding: 0px 30px;
        margin: 20px 25px;
    }

