*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    overflow-x: hidden;
    font-family: "Inria Serif", serif;
}
::-webkit-scrollbar {
    width: 15px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #307175; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Optional: rounded corners for the thumb */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* Optional: background of the scrollbar track */
}

::selection{
    background-color: #E93B81;
    color: white;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: #92b9bb;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px); /* Blur effect */
    position: fixed;
    box-shadow: 0px 4px 50px rgb(0, 0, 0, 0.5);
    z-index: 2;
    overflow-y: hidden;
}

.menu{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    align-items: center;
    height: 80%;
    font-size: 2.5vw;
    font-weight: bold;
    overflow-y: hidden;
}

.menu a{
    color: white;
}

.menu a:hover{
    color: #307175;
    transition: .65s;
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    width: 100%;      /* Full width of the container */
    height: 40%;     /* 80% of the viewport height (vh: viewport height) */
    object-fit: cover; /* Ensures the image covers the container proportionally */
    display: block;   /* Ensures the image is a block-level element */
    margin: 0 auto;   /* Centers the image horizontally */
    transition: transform 2s ease; /* Smooth zoom transition */
}

.swiper-slide img:hover {
    transform: scale(1.1); /* Scales the image to 110% of its size on hover */
}

.swiper-slide {
    position: relative;
    overflow-y: hidden;
}

.slide-caption{
    position: absolute;
    top: 50%; /* Position the text vertically in the center */
    left: 50%; /* Position the text horizontally in the center */
    transform: translate(-50%, -50%);
    color: white; /* Text color */
    background-color: rgba(0, 0, 0, 0.2); /* Background with some transparency */
    padding: 10px 20px; /* Adds padding to the caption */
    font-size: 5vw; /* Adjust font size */
    text-align: center;
    font-family: "Inria Serif", serif; /* Use the font you included */
    border-radius: 5px; /* Rounded corners for the background */
}

.head{
    display: flex;
    width: 100%;
    height: 30vh;
}

.heading{
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading-text{
    display: flex;
}

.heading-text p{
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 4px;
    font-weight: bolder;
    font-size: 4vw;
    text-shadow: 0px 4px 6px rgb(0, 0, 0, 0.5);
}

.heading-text p span{
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 4px;
    text-shadow: 0px 4px 6px rgb(0, 0, 0, 0.5);
}

.sub-heading h2{
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 3px;
    font-weight: bolder;
    text-shadow: 0px 4px 6px rgb(0, 0, 0, 0.5);
    font-size: 3.2vw;
}

.interface{
    margin-bottom: 5%;
}

.whole-calendar{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
}

.calendar-container1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    width: fit-content;
}

.calendar-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 40vw;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #307175;
    color: white;
}

.calendar-header button {
    background: none;
    border: none;
    color: white;
    font-size: 5vw;
    cursor: pointer;
}

.calendar-body {
    padding: 10px;
}

.weekdays {
    display: flex;
    justify-content: space-between;
    background-color: #ddd;
    padding: 10px 0;
}

.weekdays div {
    width: 14.28%;
    text-align: center;
    font-weight: bold;
}

.calendar-days {
    display: flex;
    flex-wrap: wrap;
}

.calendar-days div {
    width: 14.28%;
    height: 6.8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.calendar-days div:hover {
    background-color: rgb(112, 188, 191);
    border-radius: 50%;
}

.calendar-days .today {
    background-color: #307275;
    color: white;
    border-radius: 50%;
}

.selected-date-container {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 40vw;
    height: 50vh;
    text-align: center;
    overflow-y: hidden;
}

.selected-date-container h3{
    overflow-y: scroll;
}

.selected-date-container h3::-webkit-scrollbar{
    display: none;
}

#selected-date{
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 10vw;
    overflow-y: scroll;
}

#selected-date, #cycle-length-container::-webkit-scrollbar{
    display: none;
}

#clear-all, #submit-bleed-days, #submit-cycle-length {
    background-color: #307175;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    overflow-y: hidden;
}

#clear-all::-webkit-scrollbar{
    display: none;
}

#clear-all:hover, #submit-bleed-days:hover {
    background-color: #469498;
}

#bleed-days {
    width: 10vw;
    margin: 10px;
    overflow-y: scroll;
}

#bleed-days::-webkit-scrollbar{
    display: none;
}

#bleed{
    overflow-y: scroll;
}

#bleed::-webkit-scrollbar{
    display: none;
}

.calendar-days .bleed {
    background-color: #d32f2f; /* Red for bleeding days */
    color: white;
    border-radius: 50%;
}

.next-cycle {
    background-color: pink; /* Ensure this color is what you want */
    color: white;
    border-radius: 50%;
}



.calendar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
}

.calendar img{
    width: 35vw;
    cursor: pointer;
}

.calendar p{
    font-family: "Lexend Exa", sans-serif;
    letter-spacing: 2px;
    font-weight: lighter;
    font-size: 4vw;
}

#calendar{
    display: none;
    position: fixed;
    top: 50%; /* Position the text vertically in the center */
    left: 50%; /* Position the text horizontally in the center */
    transform: translate(-50%, -50%);
    border: 0.5px solid rgb(238, 238, 238, .95);
    width: 80vw;
    height: 80vh;
    border-radius: 2vw;
    backdrop-filter: blur(10px); /* Blur effect */
    background: linear-gradient(rgb(233, 59, 129, 0.3), rgb(241, 241, 241, 0.3));
    z-index: 6;
}

#calendar:active{
    display: block;
}

.cal-head{
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-evenly;
    padding-left: 3vw;
    padding-right: 3vw;
    align-items: center;
    height: 15vh;
    width: 100%;
    overflow-y: hidden;
}

.cal-text{
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    font-size: 5vw;
    letter-spacing: 2px;
}

.cal-text h3{
    font-weight: bolder;
    color: #eee;
}

.close{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7vw;
    height: 7vh;
    background: rgb(192, 15, 15);
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    overflow-y: hidden;
}

.close i{
    overflow-y: hidden;
}

.cal-close{
    display: flex;
    justify-content: right;
    height: 100%;
    align-items: center;
    text-align: center;
    font-size: 3vh;
    padding: .5%;
    color: #eee;
    overflow-y: hidden;
}

.close:hover{
    background: #eee;
    color: rgb(192, 15, 15);
    box-shadow: inset;
    overflow-y: hidden;
}

.add-date{
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding-left: 15%;
    padding-right: 15%;
    border-bottom: 1px solid white;
}

.date-data{
    display: flex;
    flex-direction: row;
    height: 50%;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.add-date p{
    font-size: 3vw;
    font-weight: 500;
    font-family: "Lexend Zetta", sans-serif;
    color: #eee;
}

input[type="date"] {
    width: 30vw;
    height: 7vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 3vw;
    cursor: pointer;
    border: 1px solid white;
    color: black;
    background: rgb(238, 238, 238, .2);
    border-radius: 3.5vw;
    font-family: "Lexend Zetta", sans-serif;
}

input[type="date"]:focus{
    outline: none;
}

input[type="button"] {
    width: 15vw;
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 3vw;
    font-size: 2.5vw;
    background: hwb(336 23% 9%);
    color: #eee;
    font-weight: 500;
    border: none;
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
}

input[type="button"]:hover {
    background: #eee;
    color: #E93B81;
    box-shadow: inset;
}

.cal-submit{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.stored-dates {
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.stored-dates::-webkit-scrollbar{
    display: none;
}

.stored-dates p {
    color: #E93B81;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 2.5vw;
    margin: 5px 0;
    text-align: center;
}

#errorMessage {
    font-size: 2vw;
    margin-top: 10px;
    color: red;
    display: none; /* Hidden by default */
}

.flow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
}

.flow img{
    width: 25vw;
    cursor: pointer;
}

.flow p{
    font-family: "Lexend Exa", sans-serif;
    letter-spacing: 2px;
    font-weight: lighter;
    font-size: 4vw;
    text-align: right;
}

#flow{
    display: none;
    position: fixed;
    top: 50%; /* Position the text vertically in the center */
    left: 50%; /* Position the text horizontally in the center */
    transform: translate(-50%, -50%);
    border: 0.5px solid rgb(238, 238, 238, .95);
    width: 80vw;
    height: 90vh;
    border-radius: 2vw;
    backdrop-filter: blur(10px); /* Blur effect */
    background: linear-gradient(rgb(233, 59, 129, 0.3), rgb(241, 241, 241, 0.3));
    z-index: 6;
}

#flow:active{
    display: block;
}

.flow-head{
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-evenly;
    padding-left: 3vw;
    padding-right: 3vw;
    align-items: center;
    height: 15vh;
    width: 100%;
    overflow-y: hidden;
}

.flo-text{
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    font-size: 5vw;
    letter-spacing: 2px;
}

.flo-text h3{
    font-weight: bolder;
    color: #eee;
}

.flo-close .close{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7vw;
    height: 7vh;
    background: rgb(192, 15, 15);
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    overflow-y: hidden;
}

.flo-close{
    display: flex;
    justify-content: right;
    height: 100%;
    align-items: center;
    text-align: center;
    font-size: 3vh;
    padding: .5%;
    color: #eee;
    overflow-y: hidden;
}

.flo-close .close:hover{
    background: #eee;
    color: rgb(192, 15, 15);
    box-shadow: inset;
    overflow-y: hidden;
}

.add-flo-date{
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding-left: 15%;
    padding-right: 15%;
    border-bottom: 1px solid white;
}

.add-flo-date1{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.flo-data{
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.add-flo-date p{
    font-size: 3vw;
    font-weight: 500;
    font-family: "Lexend Zetta", sans-serif;
    color: #eee;
}

.flo-options{
    border: 2px solid #ccc;
    width: 100%;
    height: 15vh;
    border-radius: 10px;
    color: #eee;
    font-size: 2vw;
}

.flo-options::-webkit-scrollbar{
    display: none;
}

label{
    display: flex;
    flex-direction: row;
}

.flo-submit{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.stored-flows {
    padding: 10px;
    height: 200px;
    overflow-y: scroll;
}

.stored-flows::-webkit-scrollbar{
    display: none;
}

.stored-flows p {
    color: #E93B81;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 2.5vw;
    margin: 5px 0;
    text-align: center;
}

#errorMessage {
    font-size: 2vw;
    margin-top: 10px;
    color: red;
    display: none; /* Hidden by default */
}

/* Hide the default radio button */
.flo-options input[type="radio"] {
    display: none;
}

/* Style for the custom radio button label */
.custom-radio {
    display: flex;
    padding: 1%;
    margin: 1%;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* When the radio button is checked, change the background color of the associated label */
.custom-radio input[type="radio"]:checked + .radio-label {
    background-color: #E93B81;  /* You can change this to any color */
    color: white;
    padding: 1%;
    width: 100%;
    border-radius: 5px;
}

/* Hover effect for radio labels */
.custom-radio .radio-label:hover {
    color: #880036;
    transition: .3s
}

.mood{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
}

.mood img{
    width: 50vw;
    cursor: pointer;
}

.mood p{
    font-family: "Lexend Exa", sans-serif;
    letter-spacing: 2px;
    font-weight: lighter;
    font-size: 4vw;
}

#mood{
    display: none;
    position: fixed;
    top: 50%; /* Position the text vertically in the center */
    left: 50%; /* Position the text horizontally in the center */
    transform: translate(-50%, -50%);
    border: 0.5px solid rgb(238, 238, 238, .95);
    width: 80vw;
    height: 90vh;
    border-radius: 2vw;
    backdrop-filter: blur(10px); /* Blur effect */
    background: linear-gradient(rgb(233, 59, 129, 0.3), rgb(241, 241, 241, 0.3));
    z-index: 6;
}

#mood:active{
    display: block;
}

.mood-head{
    border-bottom: 1px solid white;
    display: flex;
    justify-content: center;
    padding-left: 3vw;
    padding-right: 3vw;
    align-items: center;
    height: 15vh;
    width: 100%;
    overflow-y: hidden;
}

.moo-text{
    width: 95%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    height: 100%;
    font-size: 5vw;
    letter-spacing: 2px;
}

.moo-text h3{
    font-weight: bolder;
    color: #eee;
}

.moo-close .close{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7vw;
    height: 7vh;
    background: rgb(192, 15, 15);
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    overflow-y: hidden;
}

.moo-close{
    display: flex;
    justify-content: right;
    height: 100%;
    align-items: center;
    text-align: center;
    font-size: 3vh;
    padding: .5%;
    color: #eee;
    overflow-y: hidden;
}

.moo-close .close:hover{
    background: #eee;
    color: rgb(192, 15, 15);
    box-shadow: inset;
    overflow-y: hidden;
}

.add-moo-date{
    width: 100%;
    height: 45vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding-left: 15%;
    padding-right: 15%;
    border-bottom: 1px solid white;
}

.add-moo-date1{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.moo-data{
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.add-moo-date p{
    font-size: 3vw;
    font-weight: 500;
    font-family: "Lexend Zetta", sans-serif;
    color: #eee;
}

.moo-options{
    border: 2px solid #ccc;
    width: 100%;
    height: 15vh;
    border-radius: 10px;
    color: #eee;
    font-size: 2vw;
}

.moo-options::-webkit-scrollbar{
    display: none;
}

label{
    display: flex;
    flex-direction: row;
}

.moo-submit{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.stored-moods {
    padding: 10px;
    height: 200px;
    overflow-y: scroll;
}

.stored-moods::-webkit-scrollbar{
    display: none;
}

.stored-moods p {
    color: #E93B81;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 2.5vw;
    margin: 5px 0;
    text-align: center;
}

#errorMessage {
    font-size: 2vw;
    margin-top: 10px;
    color: red;
    display: none; /* Hidden by default */
}

/* Hide the default radio button */
.moo-options input[type="checkbox"] {
    display: none;
}

/* Style for the custom radio button label */
.custom-select {
    display: flex;
    padding: 1%;
    margin: 1%;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* When the radio button is checked, change the background color of the associated label */
.custom-select input[type="checkbox"]:checked + .select-label {
    background-color: #E93B81;  /* You can change this to any color */
    color: white;
    padding: 1%;
    width: 100%;
    border-radius: 5px;
}

/* Hover effect for radio labels */
.custom-select .select-label:hover {
    color: #880036;
    transition: .3s
}


.notes{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 3%;
    padding-left: 3%;
    align-items: center;
}

.notes img{
    width: 35vw;
    cursor: pointer;
}

.notes p{
    font-family: "Lexend Exa", sans-serif;
    letter-spacing: 2px;
    font-weight: lighter;
    font-size: 4vw;
    text-align: right;
}

#notes {
    display: none;
    position: fixed;
    top: 50%; /* Position the text vertically in the center */
    left: 50%; /* Position the text horizontally in the center */
    transform: translate(-50%, -50%);
    border: 0.5px solid rgba(238, 238, 238, 0.95);
    width: 80vw;
    height: 90vh;
    border-radius: 2vw;
    backdrop-filter: blur(10px); /* Blur effect */
    background: linear-gradient(rgb(233, 59, 129, 0.3), rgb(241, 241, 241, 0.3));
    z-index: 6;
    padding: 20px; /* Add some padding for better spacing */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
    overflow-y: hidden;
}

#notes:active {
    display: block;
}

.notes-head {
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-evenly;
    padding-left: 3vw;
    padding-right: 3vw;
    align-items: center;
    height: 15vh;
    width: 100%;
    overflow-y: hidden;
}

.notes-text{
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    font-size: 5vw;
    letter-spacing: 2px;
}

.notes-text h3 {
    font-weight: bolder;
    color: #eee;
}

.note-data{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 35vh;
}

.note-data p{
    font-size: 3vw;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    color: #eee;
}

.note-data textarea{
    border: 2px solid white;
    width: 70%;
    height: 50%;
    border-radius: 10px;
    background: rgb(233, 59, 129, .5);
    text-align: left;
    display: flex;
    padding: 10px;
    overflow-y: scroll;
    color: white;
    letter-spacing: 2px;
    font-size: 2vw;
    font-family: "Playpen Sans", cursive;
    font-weight: 500;
    box-shadow: 0px 0px 10px rgb(0, 0, 0, .5);
}

.note-data textarea:focus{
    outline: none;
}

.note-data textarea::-webkit-scrollbar{
    display: none;
}

.notes-close .close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7vw;
    height: 7vh;
    background: rgb(192, 15, 15);
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.4);
    overflow-y: hidden;
}

.notes-close{
    display: flex;
    justify-content: right;
    height: 100%;
    align-items: center;
    text-align: center;
    font-size: 3vh;
    padding: .5%;
    color: #eee;
    overflow-y: hidden;
}

.notes-close .close:hover{
    background: #eee;
    color: rgb(192, 15, 15);
    box-shadow: inset;
    overflow-y: hidden;
}

.notes-input {
    margin-bottom: 10px;
}

.add-notes {
    display: flex;
    flex-direction: column;
}

.note-data {
    margin-bottom: 10px;
}

.notes-submit {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.stored-notes {
    padding: 10px;
    height: 25%;
    overflow-y: scroll;
    color: #E93B81;
    font-size: 3vw;
}

.stored-notes::-webkit-scrollbar{
    display: none;
}


.footer{
    display: flex;
    width: 100%;
    height: 10vh;
    justify-content: center;
    align-items: center;
    background-color: #307175;
}

.footer-text{
    text-align: center;
    color: white;
}

.footer-text p{
    font-size: 2vw;
    font-family: "Lexend Exa", sans-serif;
}

.about {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: auto;
    border: 1px solid #307175;
    border-radius: 3%;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(146, 185, 187, 0.3);
    backdrop-filter: blur(10px); /* Blur effect */
    padding: 2%;
}

.a-heading{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2%;
}

.a-head{
    width: 90%;
    display: flex;
    justify-content: center;
}

.a-head h2{
    font-weight: bold;
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 1.5px;
    font-size: 4.5vw;
    color: #307175;
}

.a-head h2:hover{
    color: white;
    transition: .6s;
}

.about button{
    background: none;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 6vw;
    height: 7vh;
    border-radius: 10px;
    font-size: 2.5vw;
    background-color: #e93b3b;
    color: white;
    font-size: 3.5vw;
    cursor: pointer;
    overflow-y: hidden;
}

.about button:hover{
    background-color: white;
    color: black;
    border: 1px solid black;
    transition: .6s;
}

.about i{
    overflow-y: hidden;
}

.a-para{
    margin: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 2%;
    text-align: center;
}

.a-para p{
    font-size: 3vw;
    letter-spacing: 2px;
    color: #307175;
    font-weight: bold;
}

.contact {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: 80vh;
    border: 1px solid #307275;
    border-radius: 3%;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(146, 185, 187, 0.3);
    backdrop-filter: blur(10px); /* Blur effect */
    padding: 2%;
}

.contact::-webkit-scrollbar{
    display: none;
}

.c-heading{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2%;
}

.c-head{
    width: 90%;
    display: flex;
    justify-content: center;
}

.c-head h2{
    font-weight: bold;
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 1.5px;
    font-size: 4.5vw;
    color: #307175;
}

.c-head h2:hover{
    color: white;
    transition: .6s;
}

.contact button{
    background: none;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 6vw;
    height: 7vh;
    border-radius: 10px;
    font-size: 2.5vw;
    background-color: #e93b3b;
    color: white;
    font-size: 3.5vw;
    cursor: pointer;
    overflow-y: hidden;
}

.contact button:hover{
    background-color: white;
    color: black;
    border: 1px solid black;
    transition: .6s;
}

.contact i{
    overflow-y: hidden;
}

.c-para{
    margin: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 2%;
    text-align: center;
}

.c-para p{
    font-size: 3vw;
    letter-spacing: 2px;
    color: #307175;
    font-weight: bold;
}

.help {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: 80vh;
    border: 1px solid #307275;
    border-radius: 3%;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(146, 185, 187, 0.3);
    backdrop-filter: blur(10px); /* Blur effect */
    padding: 2%;
}

.help::-webkit-scrollbar{
    display: none;
}

.h-heading{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 2%;
}

.h-head{
    width: 90%;
    display: flex;
    justify-content: center;
}

.h-head h2{
    font-weight: bold;
    font-family: "Lexend Zetta", sans-serif;
    letter-spacing: 1.5px;
    font-size: 4.5vw;
    color: #307175;
}

.h-head h2:hover{
    color: white;
    transition: .6s;
}

.help button{
    background: none;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 6vw;
    height: 7vh;
    border-radius: 10px;
    font-size: 2.5vw;
    background-color: #e93b3b;
    color: white;
    font-size: 3.5vw;
    cursor: pointer;
    overflow-y: hidden;
}

.help button:hover{
    background-color: white;
    color: black;
    border: 1px solid black;
    transition: .6s;
}

.help i{
    overflow-y: hidden;
}

.h-para{
    margin: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 2%;
    text-align: center;
}

.h-para p{
    font-size: 3vw;
    letter-spacing: 2px;
    color: #307175;
    font-weight: bold;
}

@media (max-width: 335.99px){
    .head{
        height: 10vh;
    }
    .account{
        width: 14vw;
        height: 14vw;
        overflow-y: hidden;
    }
    .account i{
        font-size: 4.2vw;
    }
    .menu a{
        font-size: 4.2vw;
    }
    .navbar{
        height: 7.5vh;
    }
    .a-head{
        width: 80%;
    }

    .a-head h2{
        font-size: 6vw;
    }

    .about button{
        width: 14vw;
        height: 3.5vh;
        border-radius: 2px;
        font-size: 5vw;
    }

    .a-para p{
        font-size: 5vw;
    }

    .c-head{
        width: 80%;
    }

    .c-head h2{
        font-size: 6vw;
    }

    .contact button{
        width: 14vw;
        height: 3.5vh;
        border-radius: 2px;
        font-size: 5vw;
    }

    .c-para p{
        font-size: 5vw;
    }

    .h-head{
        width: 80%;
    }

    .h-head h2{
        font-size: 6vw;
    }

    .help button{
        width: 14vw;
        height: 3.5vh;
        border-radius: 2px;
        font-size: 5vw;
    }

    .h-para p{
        font-size: 5vw;
    }

    .whole-calendar{
        flex-direction: column;
        height: 100vh;
    }

    .calendar-container {
        width: 100%;
        height: 95%;
    }

    .selected-date-container {
        width: 100%;
        height: 95%;
    }

    .calendar-header button {
        font-size: 5vw;
    }

    .close{
        width: 40px;
        height: 40px;
    }
    
    .cal-close{
        font-size: 3vh;
    }

    .cal-text{
        width: 50%;
    }

    .flo-close .close{
        width: 40px;
        height: 40px;
    }
    
    .flo-close{
        font-size: 3vh;
    }

    .flo-text{
        width: 50%;
    }

    .moo-close .close{
        width: 40px;
        height: 40px;
    }
    
    .moo-close{
        font-size: 3vh;
    }

    .moo-text{
        width: 50%;
    }

    .notes-close .close{
        width: 40px;
        height: 40px;
    }

    .notes-close{
        font-size: 3vh;
    }

    .notes-text{
        width: 50%;
    }

    #close-about{
        width: 40px;
        height: 40px;
    }

    #close-contact{
        width: 40px;
        height: 40px;
    }

    #close-help{
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 336px) and (max-width: 479.99px) {
    .head{
        height: 10vh;
    }
    .account{
        width: 10vw;
        height: 10vw;
    }
    .menu a{
        font-size: 4vw;
    }
    .navbar{
        height: 8.5vh;
    }
    .a-head{
        width: 80%;
    }

    .a-head h2{
        font-size: 5vw;
    }

    .about button{
        width: 10vw;
        height: 5vh;
        border-radius: 2px;
        font-size: 5vw;
    }

    .a-para p{
        font-size: 5vw;
    }

    .c-head{
        width: 80%;
    }

    .c-head h2{
        font-size: 5vw;
    }

    .contact button{
        width: 10vw;
        height: 5vh;
        border-radius: 2px;
        font-size: 5vw;
    }

    .c-para p{
        font-size: 5vw;
    }

    .h-head{
        width: 80%;
    }

    .h-head h2{
        font-size: 5vw;
    }

    .help button{
        width: 10vw;
        height: 5vh;
        border-radius: 2px;
        font-size: 5vw;
    }

    .h-para p{
        font-size: 5vw;
    }

    .whole-calendar{
        flex-direction: column;
        height: 100vh;
    }

    .calendar-container {
        width: 95%;
        height: 50vh;
    }

    .selected-date-container {
        width: 85%;
        height: 70%;
    }

    .calendar-header button {
        font-size: 5vw;
    }

    .close{
        width: 40px;
        height: 40px;
    }
    
    .cal-close{
        font-size: 3vh;
    }

    .cal-text{
        width: 50%;
    }

    .flo-close{
        font-size: 3vh;
    }

    .flo-text{
        width: 50%;
    }
    
    .moo-close{
        font-size: 3vh;
    }

    .moo-text{
        width: 50%;
    }

    .notes-close{
        font-size: 3vh;
    }

    .notes-text{
        width: 50%;
    }

    .flo-close .close{
        width: 40px;
        height: 40px;
    }

    .moo-close .close{
        width: 40px;
        height: 40px;
    }

    .notes-close .close{
        width: 40px;
        height: 40px;
    }

    #close-about{
        width: 40px;
        height: 40px;
    }

    #close-contact{
        width: 40px;
        height: 40px;
    }

    #close-help{
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 480px) and (max-width: 767.99px) {
    .head{
        height: 15vh;
    }
    .account{
        width: 7vw;
        height: 7vw;
    }
    .menu a{
        font-size: 3vw;
    }
    .about button{
        width: 10vw;
        height: 6vh;
        font-size: 5vw;
    }
    .contact button{
        width: 10vw;
        height: 6vh;
        font-size: 5vw;
    }
    .help button{
        width: 10vw;
        height: 6vh;
        font-size: 5vw;
    }

    .whole-calendar{
        flex-direction: column;
        height: 100vh;
    }

    .calendar-container {
        width: 95%;
        height: 50vh;
    }

    .selected-date-container {
        width: 60%;
        height: 70vh;
    }

    .calendar-header button {
        font-size: 4.5vw;
    }

    .close{
        width: 40px;
        height: 40px;
    }
    
    .cal-close{
        font-size: 3vh;
    }

    .cal-text{
        width: 50%;
    }

    .flo-close{
        font-size: 3vh;
    }

    .flo-text{
        width: 50%;
    }
    
    .moo-close{
        font-size: 3vh;
    }

    .moo-text{
        width: 50%;
    }

    .notes-close{
        font-size: 3vh;
    }

    .notes-text{
        width: 50%;
    }

    .flo-close .close{
        width: 40px;
        height: 40px;
    }

    .moo-close .close{
        width: 40px;
        height: 40px;
    }

    .notes-close .close{
        width: 40px;
        height: 40px;
    }

    #close-about{
        width: 40px;
        height: 40px;
    }

    #close-contact{
        width: 40px;
        height: 40px;
    }

    #close-help{
        width: 40px;
        height: 40px;
    }
}
  
@media (min-width: 768px) and (max-width: 991.99px) {
    .head{
        height: 30vh;
    }
    .account{
        width: 6vw;
        height: 6vw;
    }

    .account i{
        font-size: 2.5vw;
    }
    .about button{
        width: 10vw;
        height: 7vh;
        font-size: 5vw;
    }
    .contact button{
        width: 10vw;
        height: 7vh;
        font-size: 5vw;
    }
    .help button{
        width: 10vw;
        height: 7vh;
        font-size: 5vw;
    }

    .whole-calendar{
        flex-direction: row;
        margin-bottom: 5%;
    }

    .calendar-container {
        width: 85%;
    }

    .selected-date-container {
        width: 40%;
    }

    .calendar-header button {
        font-size: 3vw;
    }

    .close{
        width: 50px;
        height: 50px;
    }
    
    .cal-close{
        font-size: 30px;
    }

    .cal-text{
        width: 60%;
    }

    .flo-close{
        font-size: 30px;
    }

    .flo-text{
        width: 60%;
    }
    
    .moo-close{
        font-size: 30px;
    }

    .moo-text{
        width: 60%;
    }

    .notes-close{
        font-size: 30px;
    }

    .notes-text{
        width: 60%;
    }

    .flo-close .close{
        width: 50px;
        height: 50px;
    }

    .moo-close .close{
        width: 50px;
        height: 50px;
    }

    .notes-close .close{
        width: 50px;
        height: 50px;
    }

    #close-about{
        width: 50px;
        height: 50px;
    }

    #close-contact{
        width: 50px;
        height: 50px;
    }

    #close-help{
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .head{
        height: 30vh;
    }
    .account{
        width: 5vw;
        height: 5vw;
    }

    .account i{
        font-size: 2.5vw;
    }
    .menu a{
        font-size: 2vw;
    }

    .whole-calendar{
        flex-direction: row;
        margin-bottom: 5%;
    }

    .calendar-container {
        width: 85%;
    }

    .selected-date-container {
        width: 30%;
    }

    .calendar-header button {
        font-size: 2.5vw;
    }

    .close{
        width: 55px;
        height: 55px;
    }
    
    .cal-close{
        font-size: 30px;
    }

    .cal-text{
        width: 70%;
    }

    .flo-close{
        font-size: 30px;
    }

    .flo-text{
        width: 70%;
    }
    
    .moo-close{
        font-size: 30px;
    }

    .moo-text{
        width: 70%;
    }

    .notes-close{
        font-size: 30px;
    }

    .notes-text{
        width: 70%;
    }

    .flo-close .close{
        width: 55px;
        height: 55px;
    }

    .moo-close .close{
        width: 55px;
        height: 55px;
    }

    .notes-close .close{
        width: 55px;
        height: 55px;
    }

    #close-about{
        width: 55px;
        height: 55px;
    }

    #close-contact{
        width: 55px;
        height: 55px;
    }

    #close-help{
        width: 55px;
        height: 55px;
    }
}

@media (min-width: 1200px) {
    .head{
        height: 30vh;
    }
    .account{
        width: 4vw;
        height: 4vw;
    }

    .account i{
        font-size: 1.8vw;
    }
    .menu a{
        font-size: 1.5vw;
    }

    .whole-calendar{
        flex-direction: row;
        margin-bottom: 5%;
    }

    .calendar-container {
        width: 85%;
    }

    .selected-date-container {
        width: 30%;
    }

    .calendar-header button {
        font-size: 2vw;
    }

    .close{
        width: 55px;
        height: 55px;
    }
    
    .cal-close{
        font-size: 30px;
    }

    .cal-text{
        width: 80%;
        font-size: 3.5vw;
    }

    .flo-close{
        font-size: 30px;
    }

    .flo-text{
        width: 80%;
        font-size: 3.5vw;
    }
    
    .moo-close{
        font-size: 30px;
    }

    .moo-text{
        width: 80%;
        font-size: 3.5vw;
    }

    .notes-close{
        font-size: 30px;
    }

    .notes-text{
        width: 80%;
        font-size: 3.5vw;
    }

    .flo-close .close{
        width: 55px;
        height: 55px;
    }

    .moo-close .close{
        width: 55px;
        height: 55px;
    }

    .notes-close .close{
        width: 55px;
        height: 55px;
    }

    #close-about{
        width: 55px;
        height: 55px;
    }

    #close-contact{
        width: 55px;
        height: 55px;
    }

    #close-help{
        width: 55px;
        height: 55px;
    }
}

@media (min-width: 1600px) {
    .head{
        height: 30vh;
    }
    .account{
        width: 4vw;
        height: 4vw;
    }

    .account i{
        font-size: 1.8vw;
    }
    .menu a{
        font-size: 1.5vw;
    }

    .whole-calendar{
        flex-direction: row;
        margin-bottom: 5%;
    }

    .calendar-container {
        width: 85%;
    }

    .selected-date-container {
        width: 30%;
    }

    .calendar-header button {
        font-size: 2vw;
    }

    .close{
        width: 60px;
        height: 60px;
    }
    
    .cal-close{
        font-size: 30px;
    }

    .cal-text{
        width: 85%;
        font-size: 3.5vw;
    }

    .flo-close{
        font-size: 30px;
    }

    .flo-text{
        width: 85%;
        font-size: 3.5vw;
    }
    
    .moo-close{
        font-size: 30px;
    }

    .moo-text{
        width: 85%;
        font-size: 3.5vw;
    }

    .notes-close{
        font-size: 30px;
    }

    .notes-text{
        width: 85%;
        font-size: 3.5vw;
    }

    .flo-close .close{
        width: 60px;
        height: 60px;
    }

    .moo-close .close{
        width: 60px;
        height: 60px;
    }

    .notes-close .close{
        width: 60px;
        height: 60px;
    }

    #close-about{
        width: 60px;
        height: 60px;
    }

    #close-contact{
        width: 60px;
        height: 60px;
    }

    #close-help{
        width: 60px;
        height: 60px;
    }
}
