@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --base-font-size: 16px;
    --base-time-font-size: 1.5rem;
    --base-line-height: 1.5;
    --base-font-family: 'Montserrat', sans-serif;
    --base-font-weight: 400;
    --base-color: #ffffff;
    --base-background-color: #000080;
    --primary-color: oklch(0.3011 0.0845 280.05);
    --base-secondary-color: #6c757d;
    --base-success-color: #28a745;
}

body {
    /* background-color: var(--primary-color); */
    background-image: linear-gradient(to bottom right, var(--primary-color), var(--primary-color), var(--base-background-color));
    /* background-color: #000080; */
    /* background-image: linear-gradient(to bottom right, var(--primary-color), var(--primary-color), var(--primary-color), white);
    background-size: 200% 200%;
    animation: gradientMove 6s ease-in-out infinite alternate; */
    color: white;
    padding: 100px;
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 6.125rem;
    line-height: 5.0rem;
    width: 100%;
    text-wrap: wrap;
}

.heart {
    color: white;
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

p a {
    color: white;
    text-decoration: underline;
}


.font-orbitron {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

input {
    outline: none;
    border: white 1px solid;
    border-radius: 25px;
    background-color: transparent;
    padding: 10px 20px;
    width: 100%;
    height: 50px;
    color: white;
}

input[type='checkbox'] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: white;
    /* For full custom styling, consider using appearance: none and adding a custom checkmark */
}

input[type='checkbox']:checked {
    border: 2px solid white;
}

main {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    justify-content: space-between;
    max-height: 100vh;
    width: 100%;
    flex: 1;
}

section {
    flex: 3;
    height: 100%;
    width: 100%;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.checkbox-container input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.checkbox-container label {
    font-size: 1rem;
    color: white;
}

.checkbox-container button {
    color: var(--base-background-color);
    border: none;
    background-color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
}

.mainsection {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5rem;
    width: 100%;
}

.mainsection div {
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

article {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
}


.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


/* animations go here */
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes background {
    0% {
        background-color: var(--primary-color);
    }

    100% {
        background-color: var(--base-background-color);
    }
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* // Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    body {
        padding: 10%;
        display: flex;
        flex-direction: column;
    }

    .text-lg {
        font-size: 4.125rem;
        line-height: 5.0rem;
        width: 100%;
        text-wrap: wrap;
    }

    section {
        display: none;
    }
}

/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
    body {
        padding: 50px;
        display: flex;
        flex-direction: column;
    }

    section {
        display: none;
    }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}

/* @media (prefers-color-scheme: dark) {
  .theme-a.adaptive {
    background: #753;
    color: #dcb;
    outline: 5px dashed #000;
  }
} */