* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    background-color: #fff7ed;
    color: #3f3f46;
}
.yt {
    font-size: 50px;
 font-weight: bold;
 color: #f8fafc;
}
h1 {
 font-size: 50px;
 font-weight: bold;
}
h2,
h3 {
    color: #000000;
}

.hero_image {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image:url("image/heroimage.png"); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main_layout {
    text-align: center;
    background-color: white;
    border: rgb(0, 0, 0); 
}
.navigation_add {
    background-color:white; 
    color:rgb(255, 255, 255);
    gap: 25px;
    align-items: center;
    justify-content: center;
    display: flex;
    
}

.butt {
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    padding: 20px, 25px;
    border-radius: 7px;
    color: white;
    border: 1px solid black;
    background-color: lightblue;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-radius: 10px;
}

.splitscreen {
  display: inline-flex;
  flex-wrap: wrap;
    padding:20px; 
    background-color:rgb(255, 255, 255); 
    border-radius:10px; 
    grid-column: 2;
    grid-row: 1 / span 2;
}

.navigation_add {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.navigation_add a {
    display: inline-block;
    text-decoration: none;

    color: #000000;
    background-color: white;

    padding: 10px 14px;
    border-radius: 8px;

    font-weight: bold;
    transition: 0.2s ease;
}

.navigation_view {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.navigation_view a {
    display: inline-block;
    text-decoration: none;

    color: #000000;
    background-color: white;

    padding: 10px 14px;
    border-radius: 8px;

    font-weight: bold;
    transition: 0.2s ease;
}

.navigation_add a:hover {
    background-color: #1d4ed8;
    color: white;
    transform: translateY(-2px);
}

.navigation_view a:hover {
    background-color: #1d4ed8;
    color: white;
    transform: translateY(-2px);
}


.navigation_view {
    background-color:white; 
    color:rgb(255, 255, 255);
    gap: 25px;
    align-items: center;
    justify-content: center;
    display: flex;
}
.logout_but {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  padding: 20px, 25px;
  border-radius: 7px;
  color: white;
  border: 1px solid black;
  background-color: lightblue;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-radius: 10px;
}

form {
    max-width: 700px;
    margin: 0 auto;

    background-color: #f8fafc;
    padding: 24px;

    border-radius: 18px;
    border: 1px solid #cbd5e1;

    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.viewm {
    border:2px solid rgb(255, 255, 255);
    background-color:white;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; 
}
.viewresult {
    margin-left: auto;
    margin-right: auto;
}

.viewmatch {
    margin-left: auto;
    margin-right: auto;
}

.viewteam {
    margin-left: auto;
    margin-right: auto;
}

.viewuser {
    margin-left: auto;
    margin-right: auto;
}


 

input, 
select, 
textarea{ 
    width: 100%;
    padding: 9px;
    border: 1px solid #94a3b8;
    border-radius: 8px;

    font-size: 10px;

    background-color: white;
    color: #1e293b;
} 

input[type="submit"] {
    background-color:#3e64c4; 
    color:white; 
    padding:12px; 
    border:none; 
    border-radius:8px; 
    cursor:pointer; 
} 

input[type="submit"]:hover { 
    background-color:#5aec0b; 
    color:white; 
} 

.radio {
    margin-bottom: 0%;
    text-align: center;
}

table{
    width: 95%;
    margin: 20px auto;

    border-collapse: collapse;
    background-color: white;

    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 3px 12px rgba(0,0,0,.08);
} 

th{ 
    background-color:#2663fe; 
    color:white; 
} 

th, 
td { 
    border:1px solid gray;  
    padding:20px; 
    text-align:left; 
} 

footer {
    width: 100%;
    text-align: center;
    padding: 22px;
    margin-top: 35px;

    background-color: #1d4ed8;
    color: white;
}





form {
    border: 3px solid #ffffff;
  }
 
  input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

  button {
    background-color: #1d4ed8;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }

  button:hover {
    opacity: 0.8;
  }
  
  .cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
  }
  
  .imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    
  }
  
  img.avatar {
    width: 40%;
    border-radius: 50%;
  }
  
  .container {
    padding: 16px;
  }
  
  span.psw {
    float: right;
    padding-top: 16px;
  }
  
  @media screen and (max-width: 300px) {
    span.psw {
      display: block;
      float: none;
    }
    .cancelbtn {
      width: 100%;
    }
  }

input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
  }
  
  input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
  }
  
  
  button:hover {
    opacity:1;
  }
  
  .cancelbtn, .signupbtn {
    float: left;
    width: 50%;
  }
  
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }

  @media screen and (max-width: 300px) {
    .cancelbtn, .signupbtn {
      width: 100%;
    }
  }
  
  .signup {
    text-decoration: none;
    text-align: left;
  }
  .forpsw{
    text-decoration: none;
    text-align: right;
  }
  footer {
    background-color: #1d4ed8;
    text-align: center;
    padding: 8px;
  }

  .div{
    width: 100px;
    height: 100px;
    background-image:url("image/ball.png");
    position: relative;
    animation: mymove 5s infinite;
    text-align: left;
 
}

.text-block{
  font-family: Arial, Helvetica, sans-serif;
}

.container1{
  max-width: 700px;
  margin: 0 auto;
  
  background-color: #f8fafc;
  padding: 24px;

  border-radius: 18px;
  border: 1px solid #cbd5e1;

  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.search{
  text-decoration: none;
}


