@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Hind Siliguri", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #e51e2a;
    background-attachment: fixed;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    position: relative;
    max-width: 150px;
}

.container_head {
    margin: 30px;
    padding-top: 100px;
}

.container_head h1 {
    font-size: 2em;
    font-weight: 700;
    color: white;
    text-align: center;
    padding-top: 20px;
}

.container_head h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: whitesmoke;
    text-align: center;
}

.register a {
    padding: 8px 20px;
    color: white;
    background: navy;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1.7em;
    text-decoration: none;
}

.courseFee {
    margin: 40px;
    color: gold;
    text-align: center;
    border: 5px solid;
    border-radius: 5px;
}

.course_details {
    margin: 40px;
    color: lightgrey;
}

.container {
    position: relative;
    max-width: 1077px;
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.container .card {
    background: white;
    position: relative;
    width: 300px;
    height: 700px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px;
    transition: 0.5s;
}

.container:hover .card {
    transform: scale(0.9);
    opacity: 1;
}

.container .card:hover {
    transform: scale(1.1);
    opacity: 1;
}

.container .card .circle {
    background: black;
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: circle(160px at center 0);
    text-align: center;
}

.container .card .circle h2 {
    color: white;
    font-size: 1.8em;
    padding: 10px 20px 10px 20px;
}

.container .card .content {
    position: absolute;
    top: 160px;
    text-align: center;
    page-break-after: 20px;
    margin: 20px;
    font-weight: 700;
}

.container .card .content ul {
    color: black;
    text-align: left;
    font-size: 1em;
    margin-left: 20px;
}

.container .card:nth-child(1) .circle {
    background: orange;
}
.container .card:nth-child(2) .circle {
    background: magenta;
}

.container .card:nth-child(3) .circle {
    background: purple;
}
.container .card:nth-child(4) .circle {
    background: teal;
}

.container .card:nth-child(5) .circle {
    background: blue;
}
.container .card:nth-child(6) .circle {
    background: green;
}
