* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*Changes the background color, text color, and font*/
body {
    background-color: white;
    color: black;
    font-family: "Times New Roman", serif;
    background-color: white;
}
/*Gives the header its specific details and color*/
nav {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: #FF9248;
}
/*Customizing the "Home Page" text*/
nav .heading {
    font-size: 30px;
    font-weight: 700;
    color: white;
}
/*This part lines up the buttons in the header horizontally*/
nav ul {
    display: flex;
    list-style: none;
}
/*Spaces out the header buttons*/
nav ul li {
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.2s ease-in;
}
/*turns buttons white*/
nav ul li a {
    color: black;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}
/*Background hover Color*/
nav ul li:hover {
    background-color: #343434;
}
/*Text hover color*/
nav ul li a:hover {
    color: white;
}

nav .sideMenuButton {
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
    display: none;
}

.rightside1 { 
    display: flex; 
    flex-direction: column; 
    margin-left: 300px; 
} 
  
.title1 { 
    font-size: 18px; 
    margin-top: 8px; 
    margin-bottom: 5px; 
    font-weight: bolder; 
} 
  
.content1 { 
    width: 450px; 
    margin-top: 2px; 
    color: #343434; 
} 

footer { 
    background: var(--primary-color); 
    padding: 15px 0; 
    text-align: center; 
    font-family: "Poppins", sans-serif; 
} 
  
footer .footer span { 
    font-size: 17px; 
    font-weight: 400; 
    color: var(--white-color); 
} 
  
footer .footer span a { 
    font-weight: 500; 
    color: var(--white-color); 
} 
  
footer .footer span a:hover { 
    text-decoration: underline; 
} 

input {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-right: 5px;
    margin-bottom: 5px;
}

button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #272727 ;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 2px;
}

button:hover {
    background-color: #89CFF0;
    transition: 0.2s ease-in;
}

button::after{
    background-color: #679bb4;
}