*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  font-family: "Roboto", sans-serif;
}
h1{
  font-family: "Timmana", sans-serif;
}

/*connecting code navbar code*/
.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
}
a{
    text-decoration: none;
    color: #555;
}
p{
    color: #555;
}
/*Having equal spacing form the left of the nav bar and right of the nav bar.*/
.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 15px 0;
}
.col-2 p{
    font-size: 25px;
    line-height: 60px;
    margin: 15px 0;
}
.btn{
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}
/*Order Now button hover effect*/
.btn:hover{
    background: #c25e5e;
}
/*Header Background colour*/
.header{
    background: radial-gradient(#fff,#FDBA74)
}

.header .row{
    margin-top: 70px;
}
.categories{
    margin: 70px 0;
}
.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.categories{
        background: radial-gradient(#fff,#FDBA74)
}
  body {
      font-family: Arial, sans-serif;
      text-align: center;
      padding: 40px;
    }

    .tshirt-container {
      position: relative;
      width: 320px;
      margin: 0 auto 20px;
    }

    #tshirt {
      width: 100%;
      display: block;
      position: relative;
      z-index: 1;
    }

    #design {
      position: absolute;
      top: 110px;    /* Adjust to position on shirt */
      left: 90px;
      width: 140px;
      opacity: 0.95;
      z-index: 2;
      pointer-events: none;
      border: 1px solid red; /* For debugging */
    }

    label {
      font-weight: bold;
    }

    input[type="file"] {
      margin-top: 10px;
    }