


/* Define a color palette */
:root {
  --primary-color: blueviolet;
  --secondary-color: cyan;
  --text-color: azure;
}

/* Use the fonts Open Sans and Playfair Display */
body {
  font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, p {
  font-family: 'Playfair Display', serif;
}

/* Add some padding and margin */
button {
  padding: 10px 20px;
  margin: 20px;
}
.container1, .container2, .container3, .containers, .containers2, .myinfo {
  padding: 50px;
  margin: 50px;
  font-size: 16px;
}

/* Use background images wisely */
.container1, .container2, .container3 {
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.container1 {
  background-image: url("registerlogo.jpeg");
  color: rgb(244, 134, 16);
  max-width: 100%;
}
.container2 {
  background-image: url("loginlogo.jpeg");
  max-width: 100%;
}
.container3 {
  background-image: url("education1.jpg");
  max-width: 100%;
}
.containers {
  background-color: var(--primary-color);
  color: var(--text-color);
  max-width: 100%;
}
.containers2 {
  background-color: var(--secondary-color);
  color: black;
  max-width: 100%;
}

/* Add some animations */
button:hover {
  background-color: var(--secondary-color);
  color: var(--text-color);
  transition: background-color 0.5s ease;
}
.control h1 {
  opacity: 0;
  animation: fade-in 1s forwards;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contain{
  background-color: rgb(255, 0, 140);
  color: rgb(240, 232, 247);
}


/* menu side */

/* Set font awesome icon font size and margin */
.fa {
  font-size: 50px;
  margin: 0 10px;
}

/* Set the container to display them in a row and justify the space between them */
.icon-container {
  display: flex;
  justify-content: space-between;
}

    
    
   .sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #f1f1f1;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style the hamburger menu */
.menu {
  font-size:30px;
  cursor:pointer;
}

/* Change the color of the hamburger menu on hover */
.menu:hover {
  color: #555;
}


      .field{
        border: solid 60px orange;
        background: orange;
      }

@media screen and (max-width: 600px)
 {
  .contain{
    background-color: rgb(255, 0, 140);
    color: rgb(240, 232, 247);
    width: 100%;
    text-align: center;
  }
  
  
  .field{
    display: flex;
    border: solid 20px orange;
    width: 100%;
    background: orange;
  }
  .container1 {
    background-image: url("registerlogo.jpeg");
    color: blueviolet;
    width: 100%;
    text-align: center;
  }
  .containers {
    background-color: var(--primary-color);
    color: greenyellow;
    max-width: 100%;
    ;
  }
  .container1 {
    background-image: url("registerlogo.jpeg");
    color:blue;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 16px;
  }
  .container2 {
    background-image: url("loginlogo.jpeg");
    width:100%; 
 }
  .container3 {
    background-image: url("education1.jpg");
    width: 460px;
    height: 500px; 
    position: relative;
    display: flex;
   }
  
  .containers2 {
    background-color: var(--secondary-color);
    color: black;
    text-align: center;
    width: 100%;
  }
  
  body {
        
    font-family: Arial, sans-serif;
    background-color: rgb(248, 248, 246);
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
  }



}
/* Default styles */
body {
  font-size: 16px;
}
  /* Add any other necessary styles for small screens */


/* Media query for medium screens */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
  /* Add any other necessary styles for medium screens */
}

/* Media query for large screens */
@media only screen and (min-width: 1025px) {
  body {
    font-size: 18px;
  }
  /* Add any other necessary styles for large screens */
}


#news{
  color: yellow;
  background: green;
}