@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sevillana&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

html {
    font-size: 10px;
}

body {
    background-image: url("../images/home2.png");
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: right;
}

/* //utilis */
.btn {
    padding: 5px 20px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

/* //google font icons */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
}

.iconQty {
    font-size: 15px !important;
    background-color: blue;
    border-radius: 50%;
    cursor: pointer;
}

/* scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #888585;
}

::-webkit-scrollbar-thumb {
    background: #000000;
}

/* ******************************* */

.toast {
    padding: 10px;
    background-color: rgb(0, 0, 0);
    display: inline-block;
    min-width: 15rem;
    border-radius: 5px;
    color: white;
    position: absolute;
    font-size: 16px;
    top: -20px;
    left: 50%;
    transition: all 1s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    font-size: 1.6rem;
    padding: 1rem 4.5rem;
    color: white;
}


.midNav {
    display: flex;
    justify-content: space-around;
    width: 25%;
}

.midNav>a {
    text-decoration: none;
    color: white;
}

.rightNav>img {
    cursor: pointer;
}

/* Home Content css */
.homeContent {
    /* border: 2px solid red; */
    height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4.5rem;
}

.homeContent>h2 {
    font-size: 4.5rem;
    margin-bottom: 16px;
}

.homeContent>p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 16px;
}

.homeContent>button {
    width: 12rem;
}