/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');

.container {
    font-family: 'Architects Daughter', cursive;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap; /* Add this line to allow columns to wrap */
    justify-content: space-between;
    width: 100%;
}

.left-column {
    display: none;
}

.right-column {
    width: 100%;
    padding: 20px;
}

.image {
    width: auto;
    height: auto;
}

.text {
    margin-top: 10px;
}

.right-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-note {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    padding: 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    position: relative;
}

.sticky-yellow {
    background-color: #ffeb3b;
    border: 1px solid #f5d500;
}

.sticky-pink {
    background-color: #ff32b2;
    border: 1px solid #ff32b2;
}

.sticky-orange {
    background-color: #ffa930;
    border: 1px solid #ffa930;
}

.sticky-blue {
    background-color: #a9edf1;
    border: 1px solid #a9edf1;
}

.sticky-green {
    background-color: #74ed4b;
    border: 1px solid #74ed4b;
}

.sticky-heading {
    margin-bottom: 10px;
}

.sticky-text {
    margin: 0;
}

.sticky-text-dark {
    color: #000000 !important;
}

.sticky-text-light {
    color: #ffffff !important;
}

/* Add a media query for larger devices */
@media (min-width: 768px) {
    .left-column {
        width: 30%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .right-column {
        width: 70%;
    }
}




