:root{
    --background: hsl(225, 100%, 94%);
    --button: hsl(245, 75%, 52%);
    --letter-button: hsl(225, 100%, 98%);
    --active:hsl(224, 23%, 55%);
    --title: hsl(223, 47%, 23%);
    --button-hover: hsl(268, 43%, 63%);
}
body {
    background: var(--background) url("images/pattern-background-desktop.svg") no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
h1,p,button,a{
    font-family: "Red Hat Display", sans-serif;
    font-size: 15px;
}

h1{
    font-size: 20px;
    font-weight: 900;
    color: var(--title);
    margin: 0px 0px 20px 0px;
}
p{
    font-weight: 500;
    color: var(--active); 
    letter-spacing: 1px;
    margin: 0px 50px;
}
button,a{
    cursor: pointer;
    font-weight: 700;
}
button {
    color: var(--letter-button);
    background-color: var(--button);
    border: none;
    width: 80%;
    padding: 15px;
    border-radius: 10px;
}
button:hover{
    background-color: var(--button-hover);
}

img {
    width: 300px;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

/**Class*/
.container {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info{
    width: 300px;
    padding: 30px 0px;
}
.price{
    display: flex;
    background-color: var(--letter-button);
    border-radius: 10px;
    align-items: center;
    margin: 20px auto 0px;
    width: 80%;
}
.price1{
    margin: 20px 0px;
    text-align: left;
}
.price1 h1{
    margin: 0px;
    font-size: 13px;
}
.price1 p{
    margin: 0px;
}
.links{
    margin-top: 30px;
}
.price img{
    width: auto;
    height: auto;
    margin: 10px;
}
.price a{
    margin: auto;
}
.price a:hover{
    color: var(--button-hover);
    text-decoration-line: none;
}
.links a{
    color: var(--active);
    text-decoration-line: none;
}


@media (min-width: 750px) {
    img, .info{
        width: 400px;
    }
    /**Class*/
    .price1 h1{
        font-size: 18px;
    }
}