@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

@font-face {
    font-family: "Bernier";
    src: local("Bernier"), url("../assets/bernier.ttf");
}

body {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    color: #ddd;
    background: url("../assets/background.jpg") no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    cursor: default;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
main {
    width: 100%;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}
header {
    height: 100px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: "Bernier";
    font-size: 30px;
    font-weight: 400;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

nav ul li {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header img {
    width: 90px;
}

h1 {
    font-family: "Bernier";
    font-size: 40px;
    font-weight: 400;
    color: #fff;
}

header h1 {
    letter-spacing: 4px;
}

header div{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

  .cartItems th, td{
    padding-right: 20px;

  }

  .cartItems{
    text-align:center
  }

  .purchaseItems > *{
    display: inline-block;
    float: left;
    text-align: center;
    padding-right: 20px;
    font-weight: 300;
  }

 .forms section{
    width: 500px;
    height: fit-content;
    background-color: rgba(255,255,255,0.13);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);    
    padding: 20px;
}
.forms section *{    
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
.forms section h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

.forms label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
.forms input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
.forms ::placeholder{
    color: #e5e5e5;
}
.forms button{
    margin-top: 30px;
    width: 100%;
    background-color: #ffffff;
    color: #080710;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

.forms ul, li{
    font-weight: 300;
}

.buy_bttn {
    margin-top: 50px;
    width: 50%;
    background-color: #ffffff;
    color: #080710;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
  }

  
input[type=checkbox] {
    width: 25px;
    height: 25px;
    display: inline;
    margin-top: 0px;
  }

  select {
    padding: 3px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1.5px solid #ccc;
    border-radius: 4px;
  }
  
  option {
    padding: 5px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
  }
  
  /* table {
    border-collapse: collapse;
    width: 100%;
  } */
  
  th {
    text-align: center;
    
  }