@import url("header.css");
@import url("carousel.css");
@import url("sections.css");
@import url("course.css");
@import url("login.css");
@import url("footer.css");

:root {
    --bg: #ffffff;
    --dark: #333; 
    --header: rgba(255, 255, 255, 0.95); 
    --dark-grey: #6b7280;
    --accent: #2563eb;
    --hover-accent: oklch(0.488 0.243 264.376);
    --light-grey:oklch(97% 0 0);
    --grey: #ddd;
    --red:#dc2626;
    --shadow: rgba(0, 0, 0, 0.1) 0 4px 6px;
    --hover-shadow:rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Geist", sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--dark);
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    /* align-items: center; */
}

.button1 {
    cursor: pointer;
    border: none;
    padding: 8px 10px;
    font-size: medium;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

#terms-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5%;
    gap: 1rem;
}

#terms-container h1{
    color: var(--accent);
}