@font-face {
  font-family: luckiest-guy;
  src: url('/fonts/LuckiestGuy-Regular.ttf') format('truetype');
  font-style: regular;
}


body {
    font-family: 'Gotham Medium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding-top: 50px;
    background-image: url('/images/tacos_burritos_background.jpg');
    background-repeat: repeat; /* */
}

#maincontainer {
	border: 3px solid purple;
	background: lightgray;
}

.luckiest-guy-regular {
  font-family: luckiest-guy, 'Gotham Medium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-style: regular;
  font-size: 2.5rem;
}

.container {
    width: 75%;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    display: inline-block;
    shadow: 0 4px 6px rgba(0,0,0,0.1);
}

input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #702082;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #5a1a69;
}

#result {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
}
#taconame {
    font-family: luckiest-guy, 'Gotham Medium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    color: red;
    font-weight: 400;
}



