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

* {
    margin: 0; padding: 0;
}

body {
    font-family: "Raleway";
}

a {
    text-decoration: none;
    color: #FFF;
    font-size: 20px;
}

header {
    width: 100vw;
    height: 80px;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #CA7900;
}

nav div:first-child {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav div:last-child {
    display: flex;
    align-items: center;
}

nav div:last-child img {
    height: 20px;
}

body {
    background-color: rgba(0, 0, 0, 0.84);
    color: #FFF;
    font-family: "Raleway";

    width: 100vw;
    height: 100vh;
}

.dialog-container {
    background-color: #CA7900;
    width: 80%;
    height: 150px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 200px auto 0px auto;
}

.dialog-container p {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
}

.dialog-container img {
    position: absolute;
    margin-bottom: 200px;
    width: 140px;
}

.products-container {
    display: flex;
    align-items: center;
    width: 80%;
    margin: 50px auto;
    margin-bottom: 200px;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}


.products-container div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.products-container div p {
    font-family: "Raleway";
    font-size: 20px;
    text-align: center;
}

.products-container div button {
    width: 120px;
    height: 40px;
    border: 5px solid #FFF;
    background-color: #CA7900;
    color: #FFF;
    font-family: "Raleway";
    font-weight: 600;
    border-radius: 7px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    
    header, nav {
        width: 100vw;
        height: auto;
    }

    nav {
        flex-direction: column;
        padding: 20px 0px;
        gap: 15px;
    }

    nav div:first-child {
        flex-direction: column;
        gap: 15px;
    }

    .dialog-container {
        padding: 20px;
    }
}

@media only screen and (max-width: 545px) {

    .dialog-container img {
        margin-top: -40px;
    }

}