/* font-family: 'Noto Serif', serif;
font-family: 'PT Sans', sans-serif; */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Noto Serif', serif;
    background-color: #e3f2fd;
    height: 100%;
    line-height: 1.2;
}

body, h1, h2, h3, h4, p, ul {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 967px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 55px 0px rgba(181, 220, 248, 1);
    border-radius: 8px;

    padding-top: 60px;
    padding-left: 70px;
    padding-bottom: 40px;
    padding-right: 70px;
}

.card-img-wrapper {
    float: left;
}

.card-img {
    vertical-align: top;
}

.card-content-wrapper {
    float: right;
    padding-top: 11px;
    width: 426px;
}

.card-type {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #bfc5c8;
}

.card-type:last-of-type {
    margin-bottom: 2px;
}

.card-title {
    margin-bottom: 23px;
    font-weight: 700;
    font-size: 38px;
    color: #01a4bd;
}

.card-text {
    margin-bottom: 17px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6c757f;
}

.card-text p {
    margin-bottom: 15px;
}

.card-text p:last-child {
    margin-bottom: 0;
}

.card-price {
    margin-bottom: 24px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
}

.button-primary {
    display: inline-block;
    height: 54px;
    padding-left: 33px;
    padding-right: 36px;
    border-radius: 5px;
    background-color: #e2013b;

    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 50px;
    color: #ffffff;
    text-decoration: none;
}