@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(0, 0, 0);
    justify-content: center;
    align-items: center;
}

section {
    position: relative;
    min-height: 100%;
    width: 400px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 41px 0px;
    margin: auto;
    height: 100%;

}
section h1{
    color: rgb(255, 255, 255);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: xx-large;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

h3 {
    color: rgb(255, 255, 255);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: medium;
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

.container {
    display: flex;
    width: 90%;
    max-width: 500px;
    align-items: center;
    background-color: rgb(255, 255, 142);
    border-radius: 20px;
    padding: 4px 8px;
    position: relative;
}

.texts p {
    /* background: rgb(138, 29, 29); */
    box-sizing: border-box;
    font-size: 15px;
    font-family: 'Almarai', sans-serif;
    height: 50%;
    width: 338px;
    text-align: center;
    padding: 1px 0;
}

.texts p.reply {
    /* text-align: right; */
    color: rgb(100, 100, 100);
    font-weight: 900;
}



select {
    appearance: none;
    outline: 0;
    background: rgb(131, 240, 235);
    background-image: none;
    width: 100%;
    height: 100%;
    color: black;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding-left: 5%;
}

select option {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
}

select:hover {
    background: rgb(64, 223, 217);
}

.select {
    position: relative;
    display: inline;
    width: 17em;
    height: 40px;
    border-radius: .25em;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h1 {
    color: green;
}

#vtext {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(131, 240, 235);
    font-size: 0.8rem;
}

.box {
    position: relative;
    padding: 0px 0 15px 0;
    transform: translate(0% -30%);
}

.btn:link,
.btn:visited {
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    top: 0;
    left: 0;
    padding: 6px 16px;
    margin: 0 5px;
    border-radius: 100px;
    display: inline-block;
    transition: all .5s;
    font-family: 'Fredoka One', cursive;
    font-size: 15px;
}

.btn-white {
    background: rgb(150, 243, 255);
    color: #000;
}

.btn:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.btn:active {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.btn-bottom-animation-1 {
    animation: comeFromBottom 1s ease-out .8s;
}

.btn::after {
    content: "";
    text-decoration: none;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100px;
    display: inline-block;
    z-index: -1;
    transition: all .5s;
}

.btn-white::after {
    background: rgb(77, 234, 255);
}

.btn-animation-1:hover::after {
    transform: scaleX(1.2) scaleY(1.6);
    opacity: 0;
}

@keyframes comeFromBottom {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}