/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
    font-family: 'Quicksand', Arial, sans-serif;
}
html, body {
    height: 100%;
    
}

body {
    font-family: 'Quicksand', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fffbe6;
    color: black;
    font-size: 16px;
    line-height: 1.5;
    animation: slideIn 0.5s ease-out;
    min-height: 100vh;
    box-sizing: border-box;
}
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

h1 {
    font-size:24px;
    font-weight:bold;
    margin-top:20px;
    overflow:visible;
    padding:0px;
    text-align:center;
    font-size: 26px;
}
h2 {
    font-weight: normal;
    text-align: center;
    margin-top: -10px;
    padding: 5px;
    font-size: 18px;
    letter-spacing: 2px;
}
h3 {
    font-weight: bold;
    text-align: center;
    padding: 5px;
    font-size: 18px;
    margin-top: -40px;
}
h4 {
    font-weight: normal;
    text-align: center;
    padding: 5px;
    font-size: 16px;
    margin-top: 0px;
}
h5 {
    font-weight: normal;
    text-align: center;
    padding: 5px;
    font-size: 14px;
    margin-top: 0px;
    margin: 3px;
}

img {
    width: 50%;
    height: auto;
    max-width: 300px;
    position: relative;
    border-radius: 2000px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 55px;
}


.first {
    border: 1px solid black;
    margin-bottom: -20px;
    background-color: #d0b273;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 14px;
    font-size: 20px;
}
#login {
    display: block;
    margin: 0 auto;
    padding: 10px;
    width: 70%;
    max-width: 600px;
    border-radius: 10px;
    background-color: #78e753;
    color: rgb(0, 0, 0);
    font-weight: bold;
    border: none;
    font-family: Arial, sans-serif;
}
#login:hover {
    background-color: gray;
    color: black;
}
#signup {
    display: block;
    margin: 0 auto;
    padding: 10px;
    width: 70%;
    max-width: 600px;
    border-radius: 10px;
    background-color: rgb(91, 161, 236);
    color: black;
    font-weight: bold;
    border: none;
    font-family: Arial, sans-serif;
    margin-top: -10px;
}
#signup:hover {
    background-color: gray;
    color: black;
}
a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
a:hover {
    color: gray;
}
.slide-out {
    animation: fadeOut 2s forwards;
}

@keyframes slideOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* ...existing code... */


