/* Fonts */

@font-face {
    font-family: "Poppins";
    src: url("Poppins-Regular.ttf");
}

@font-face {
    font-family: "PoppinsExtraBold";
    src: url("Poppins-ExtraBold.ttf");
}

.Poppins {
    font-family: "Poppins";
    color: #fff;
}

.PoppinsExtraBold {
    font-family: "PoppinsExtraBold";
    color: #fff;
}

.genericDiv {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    align-items: center;
}


img {
    max-width: 100%;
    border: 0;
}

/* unvisited link */
a:link {
    color: white;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: white;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #de2222;
    text-decoration: none;
}

/* selected link */
a:active {
    color: white;
    text-decoration: none;
}

.oneColumnSpan {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-align: -webkit-center;
}

.mainContainer{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    text-align: center;
    text-align: -webkit-center;
}

.navButton{
    cursor: pointer;
    display: flex;
    padding-right: 1%;
    padding-left: 1%;
}

.videoThumbnail:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.tipsThumbnail:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.sendButton {
    border-radius: 15px;
    border: solid gray;
    cursor: pointer;
    background-color: lightgrey;
    color: black;
}

.sendButton:hover {
    background-color: #8F110D;
    color: white;
}

.buttonStyle {
    border-radius: 15px;
    border: solid gray;
    cursor: pointer;
    background-color: lightgrey;
    color: black;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.buttonStyle:hover {
    background-color: #8F110D;
    color: white;
}


.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #222;
    color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;


}

.modal-content input,
.modal-content textarea {
    width: 95%;
    padding: 10px;
    margin-top: 6px;
    margin-bottom: 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.modal-content button {
    background-color: #ff3366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
    max-width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
}

.checkbox-wrap input[type="checkbox"] {
    width: 10%;
}


.modal {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
