@font-face {
    font-family: "Emilia";
    src: url("../fonts/EmiliaNote.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Timeless";
    src: url("../fonts/TimelessHorizon-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

.insta-parent-cont{
    display: flex;
    align-items: center;

    width: 100%;
    margin-top: 2vw;
}

.insta-text-cont-header{

    display: flex;
    flex-direction: column;

    width: 40%;
    height: 30vw;
    margin-left: 5%;
    padding-top: 2vw;

    text-align: center;
    font-size: 8vw;
    font-family: "Emilia";
    font-weight: bold;
    color:rgb(3, 88, 21);

    border-radius: 2vw;
    box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.2);
}

.insta-text-cont-body{
    width: 100%;
    height: 35vw;

    margin-top: 2vw;
    padding: 1vw;

    color: black;
    font-size: 2.5vw;
    font-family: "Timeless";
    font-weight: thin;

    flex-wrap: wrap;
    text-align: center;
}

.insta-display-cont{
    position: relative;

    width: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    background-image: radial-gradient(circle, rgb(80, 235, 60),  rgb(3, 88, 21));

    padding: 1.25vw;
    border-radius: 2vw;
    box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.2);

    margin: 10vw auto;
}

.insta-display-cont img{
    width: 10%;
    margin-right: 2.25%;

    cursor: pointer;

    transition: transform 0.5s ease;
}

.insta-display-cont img:hover{
    transform: scale(1.1);
}

.insta-display {
    width: 100%;
    position: relative;

    display: flex;
    flex-wrap: wrap; /* Allow wrapping if the container width is exceeded */
    justify-content: space-between; /* Distribute space between items */
    align-items: flex-start; /* Align items at the top */

    border-radius: 1vw;

    background-color: white;

    box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.2);
}

.post {
    width: 49%;

    display: flex;
    box-sizing: border-box;

    padding: 2.5vw;
}

.post img{
    width: 100%;
    height: auto;
    object-fit: contain;

    border-radius: 1vw;

    transition: transform 0.5s ease;
}

.post img:hover{
    transform: scale(1.25);
}