@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");

/* This will be covered in further sessions */
* {
    box-sizing: border-box;
    font-family: "Roboto";
}

body {
    margin: 0px;
}

.maincontainer {
    background-image: url("https://assets.ccbp.in/frontend/intermediate-rwd/musical-night-bg.png");
    background-size: cover;
    padding: 30px 10px;
}

.container1 {
    width: 90%;
    max-width: 800px;
    padding:20px;
    background-color: white;
    border-radius: 10px;
    margin: auto;
}

.container2 {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.heading1 {
    color: #12022f;
    font-size: 30px;
    font-weight: bold;
    font-family: "Roboto";
}

.heading2 {
    color: #12022f;
    font-size: 20px;
    font-weight: bold;
    font-family: "Roboto";
    margin-bottom:0px;
}

.para {
    color: #594d6d;
    font-size: 13px;
    font-weight: bold;
    font-family: "Roboto";
}

.image1 {
    max-width: 60vw;
}

.image2 {
    max-width: 35vw;
    height: 20vh;
    margin-right:10px;
}

.container3 {
    display: flex;
    flex-direction: row;
}
