:root{
    --windows_color: #08223f;
    --text_color: white;
    --text_transform: uppercase;
}

.card{
    border-radius: 20px;
    width: 25rem;
    height: 30rem;
    background-color: var(--windows_color);
    margin: 10px;
}

.card .card-header{
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .card-header p{
    font-size: 1.5rem;
}

.card .card-body{
    width: 100%;
    height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.card .card-body img{
    width: 100%;
    height: 15rem;
}

.card .card-body p{
    display: flex;
    justify-content: center;
    justify-items: center;
    padding: 5px 0;    
    width: 100%;
    height: 5rem;
    text-align: center;
}

.card .card-body .card-price{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
}

.card .card-body .card-price p{
    font-size: 1.5rem;
    padding: 5px 10px;
    position: relative;
    left: 10px;
    display: flex;
    justify-content: start;
    align-items: start;
}

a{
    text-decoration: none;
}

.card-footer button{
    position: relative;
    left: 20px;
    top: 20px;
}