.groupcontainer { /* This is the image on the from of the home page */
    position: relative;
    text-align: center;
    color: #ededed;
    margin-bottom: 20px;
}
/* Centered text */
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    color: #fff"";
    text-shadow:-.1em .15em .15em black;
    background-color: rgba(0, 0, 0, 0.15); 
}

.f3begin p{
    text-align: center;
    color: #fff;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 20pt;

}
.custom-border {
    position: relative; /* Required for positioning the pseudo-elements */
    padding: 20px; /* Adjust padding as needed */
    text-align: center; /* Center text (optional) */
}
/* Add pseudo-elements for the border effect */
.custom-border::before,
.custom-border::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 3px solid #fff; /* Border style and color */
}

.custom-border::before {
    top: 100%; /* Position above the content */
    transform: translateY(-10px); /* Adjust cut-off effect */
}

.custom-border::after {
    bottom: 0; /* Position at the bottom */
    transform: translateY(10px); /* Adjust cut-off effect */
}
/* Center the prompt box inside the normal flow of the page */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

/* Center the prompt box */
/* F3 Core Principles Styling */
.prompt-box {
    width: 320px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
    padding: 20px;
    transition: opacity 0.5s ease-in-out;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
  }
  
  .principle {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text);
    gap: 10px;
  }
  
  .principle img {
    height: 60px;
    width: 60px;
    filter: invert(85%) brightness(1.1);
  }
  
  .navigation-arrows {
    display: flex;
    justify-content: space-between;
    width: 320px;
    margin-top: 12px;
  }
  
  .arrow {
    cursor: pointer;
    font-size: 36px;
    color: var(--accent);
    transition: transform 0.2s;
  }
  
  .arrow:hover {
    transform: scale(1.2);
    color: var(--white);
  }
  
.joinus{
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #fff;
}

.jus {
    -moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
    -webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
    box-shadow:inset 0px 1px 0px 0px #f29c93;
    background-color:transparent;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    border-radius:6px;
    border:1px solid #d83526;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:3.2vw;
    font-weight:bold;
    padding:12px 76px;
    text-decoration:none;
    text-shadow:0px 1px 0px #b23e35;
    &:hover {
    background-color:transparent;
    }
}
.F3map {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;                             
}
.F3map iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
} 
@media (min-width: 800px) {
    /* CSS that should be displayed if width is equal to or less than 800px goes here */
            .ihatethismap{ /* I am going through it here */
                padding-left: 10%;
                padding-right: 10%;
                margin-bottom: 20px;
            } 
            .mobile-only {
                display: none;
            }
            .jus{
                display: none;
            }
            .joinus p{
                padding-bottom: 10px;
                font-size: 20pt;
                padding-left: 20%;
                padding-right: 20%;
            }
        }

@media (max-width: 720px) {
    .ihatethismap{
        display: none;
    }
    .mobile-only{
        padding-bottom: 10px;
        font-size: 20pt;
        padding-left: 20%;
        padding-right: 20%;
    }
    .joinus p{
        font-size: 20pt;
        padding-left: 20%;
        padding-right: 20%;
    }
}