@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

* {
    box-sizing: border-box;
}

body {
    margin: 0px;
}

.mainContainer {
    background-image: url("https://assets.ccbp.in/frontend/intermediate-rwd/fairpods-darkpink-bg.png");
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100vh;
}

.imageCon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.earbuds {
    height: 40vh;
    align-self: center;
}

.textCon {
    padding: 10px 0px 30px 0px;
}

.heading1 {
    color: #8e62d9;
    font-family: "Roboto";
    font-size: 25px;
}

.heading2 {
    color: white;
    font-family: "Roboto";
    font-size: 30px;
    margin-bottom: 30px;
}

.desc {
    font-family: "Roboto";
    color: white;
    font-size: 20px;
    margin-bottom: 30px;
}

.view {
    background-color: #ffdda9;
    border-radius: 30px;
    color: #334155;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 60px;
}

@media(min-width:900px) {
    .mainContainer {
        background-image: url("https://assets.ccbp.in/frontend/intermediate-rwd/fairpods-blue-bg.png");
        background-size: cover;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 30px;
        height: 100vh;
    }

    .imageCon {
        order: 1;
    }

    .earbuds {
        width: 30vw;
        height: 60vh;
    }
}