/* Font Import, Hind and Archivo */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Hind:wght@300;400;500;600&display=swap');

/* using flex for containers to make easily responsive design */
body {
    margin: 0;
    font-family: 'Hind', sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

p {
    font-size: 1.5vw;
}

h1, h2, h3 {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
}

a {
    text-decoration: none;
}

a:hover {
    transition: 0.4s ease-out;
}

footer {
    margin-top: 0;
    text-align: center;
    font-size: 1vw;
}

/* header container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 1vw 0.5vw 1vw;
    background-color: white;
    margin: 0;
}

/* header image styling */
.container .header_logo {
    display: flex;
    align-items: center;
    color: #4e4e4e;
}

.container .header_logo img {
    width: 8vw;
    height: 8vw;
    margin: 0;
}

/* website title styling */
.header_logo_text {
    margin-left: 1.2vw;
}

.header_logo_text h1 {
    font-size: 2.2vw;
}

/* navigation bar styling */
.header_menu {
    display: flex;
    align-items: center;
    margin: 1vw 1.5vw 0vw 0vw;
}

.header_menu li {
    margin-left: 3vw;
    list-style-type: none;
    text-decoration: none;
    line-height: 1.5vw;
    font-size: 1.8vw;
    color: #4e4e4e;
}

/* styling for line that appears when li hovered */
.header_menu li::after {
    content: '';
    display: block;
    margin-top: 1vw;
    width: 0;
    height: 4px;
    background-color: #f68358;
    transition: width 0.3s;
    position: relative;
    left: -10%;
}

.header_menu li:hover::after {
    width: 120%;
}

.header_menu li:active {
    color: #f68358;
}

.header_menus li::after {
    width: 120%;
}

/* most of the following stylings are the basic parameters set.
page specific style (mostly color choosing) is set with inline css */

/* basic styling for content container */
.body-page {
    margin: 3vw 0vw 1vw 0vw;
    padding: 0 7vw 2vw 7vw;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

/* basic styling for page heading container and text*/
.page-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4e4e4e;
}

.page-heading h1 {
    margin-bottom: 0;
}

/* form style */
form {
    margin-top: 1vw;
    display: flex;
    flex-direction: column;
}

form input {
    font-size: 1.5vw;
}

form div {
    margin: 0.5vw 0vw;
}

/* grade and school form questions container style */
.first-two {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.first-two label {
    font-size: 1.5vw;
}

/* basic table styling */

table {
    margin: 0.8vw 0;
    width: 100%;
    border-radius: 6px;
    border-collapse: collapse;
    display: flex;
}

/* table header */
table th {
    font-size: 1.5vw;
    /* line-height: 28px; */
    padding: 0.8vw 1vw;
    color: #000;
    font-weight: 600;
}

/* table cell */
table td {
    font-size: 1.2vw;
    /* line-height: 28px; */
    text-align: center;
    padding: 0.8vw 1vw;
}

/* form submit button style */
.submit {
    padding-top: 1vw;
    padding-bottom: 1vw;
    background-color: #ffa483;
    color: #333;
    font-size: 1.5vw;
    font-weight: 600;
    border: 1px solid #ffa483;
}

.submit:hover {
    transition: 0.5s ease;
    background-color: #f68358;
    color: #fff;
    cursor: grab;
    border: 1px solid #f68358;
}