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

body {
    height: 100vh;
    width: 100vw;
    background: url('background.png') no-repeat center center/cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 1000;
}

.container {
    margin-right: 12%;
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

#quote {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#search-form {
    width: 100%;
}

#search-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
    background-color: #a39c89;
    color: #2b2823;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#search-input::placeholder {
    color: #4a453b;
}

.shortcuts {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}

.shortcuts a {
    width: 85px;
    height: 80px;
    background-color: #e6dfcd;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.shortcuts img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}