@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url(https://db.onlinewebfonts.com/c/f1fcc5aed1e20fc0cdb9f8a7573625bd?family=Integral+CF+Regular);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body {
    background-color: #F7F9FC;
    /* background-color: rgb(255, 0, 0); */
    min-height: 100vh;
    margin: 0 auto;
    margin-top: 40px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.homepage {
    width: 70.5em;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 13px;    
    padding-left: 20px;
    padding-right: 20px;
}

header {
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}


.pad {
    padding: 5px;
}

.display-flex {
    display: flex;
}

.flex1 {
    flex: 1;
}

.bento {
    border-radius: 29px;
    background-color: white;
}

.text-container {
    position: absolute;
    bottom: 1em;
    left: 1.3em;

}

.heading {
    letter-spacing: -1px;
    font-size: 14px;
    color: #bebebe;
}

.Topic {
    font-size: 22px;
    color: #0f0f0f;
    font-weight: 500;
    letter-spacing: -2px;
}

.img {
    width: 3rem;
    position: absolute;
    bottom: 17px;
    right: 10px;
    opacity: 0.4;
    transition: 0.3s;
}

.bento:hover .img {
    opacity: 1;
}

a {
    text-decoration: none;
    position: relative;
}

/* Prevent text selection */
body {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

/* Prevent right-click on images */
img {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
    pointer-events: none;
}

/* Optionally, hide context menu */
body {
    -webkit-touch-callout: none;
    /* Disable callout, menu for long tap on iOS */
    -webkit-user-select: none;
    /* Disable selection/copy in Safari */
    -khtml-user-select: none;
    /* Disable selection/copy in Konqueror */
    -moz-user-select: none;
    /* Disable selection/copy in Firefox */
    -ms-user-select: none;
    /* Disable selection/copy in Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}

/* Disable context menu on the entire page */
body {
    -webkit-touch-callout: none;
    /* Disable callout, menu for long tap on iOS */
    -webkit-user-select: none;
    /* Disable selection/copy in Safari */
    -khtml-user-select: none;
    /* Disable selection/copy in Konqueror */
    -moz-user-select: none;
    /* Disable selection/copy in Firefox */
    -ms-user-select: none;
    /* Disable selection/copy in Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently supported by Chrome and Opera */
}