* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Big Shoulders Display Font*/
@font-face {
    font-family: 'BigShouldersDisplay';
    src: url('./assets/fonts/big-shoulders-display/BigShouldersDisplay-ExtraBold.ttf') format('truetype');
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    background: url('./assets/cultureBackground.png') no-repeat center/cover;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2em;
    background: url('./assets/worldmap.png') no-repeat center/cover;
    color:white;
}

header img {
  width: 95px;
  height: 85px;
}

header h1 {
    color: #32CD32;
    padding-bottom: 0;
    margin-bottom: 0;
    font-family: 'BigShouldersDisplay', sans-serif;
}

header p {
    font-size: 0.6em;
    margin:0;
    padding:0;
    font-weight: 600;
}

#translate-section, #output-section {
    border: 2.5px solid black;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1em;
}

.input {
    text-align: center;
    color:#035A9D;
    padding: 0.8em;
}

textarea {
  resize: none;
  padding: 0.8em;
  font-weight: bolder;
}

.radio-input {
    display: flex;
    gap:0.2rem;
    padding: 0.2em;
    align-items: baseline;
}

.radio-input img {
    height: 15px;
    width: 20px;
    border: 1px solid black;
    align-self: anchor-center;
}

.btn-translate {
    display: flex;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 1.2rem;
  font-weight: bolder;
  background-color: #035A9D;
  cursor: pointer;
  color:#fff;
  width: 100%;
  margin-top: 1rem;
}

#output-section {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

button.translating {
    animation: pulse 1.5s infinite;
}

