* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;

}

body {
    background-image: url(background.jpg);
}

background {
    position: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

@font-face {
    font-family: GoldenHillsDEMO;
    src: url(GoldenHillsDEMO.ttf);
}

header {
    display: flex;
    height: 65px;
    background-color: rgb(49, 49, 49, 0.5);
    z-index: 1;
    justify-content: space-around;
}

h1 {
    font-family: GoldenHillsDEMO;
    font-size: 50px;
    color: rgb(247, 215, 36);
}

.buttons {
    display: flex;
    height: 100%;
}

#comprar {
    width: 150px;
    height: 100%;
    margin-left: 10px;
    font-size: 25px;
    color: white;
    border: solid;
    background-color: rgb(51, 51, 51, 0);
    border: 3px solid white;
    border-radius: 8px;
}

#login {
    width: 150px;
    height: 100%;
    margin-left: 10px;
    font-size: 25px;
    color: white;
    border: solid;
    background-color: rgba(255, 255, 255, 0);
    border: 3px solid white;
    border-radius: 8px;
}

button:hover {
    background-color: rgb(20, 20, 20, 0.5);
    cursor: pointer;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

#conteudo1 {
    display: flex;
    background-color: rgba(255, 255, 255, 0.61);
    flex-direction: column;
    height: 70vh;
    width: 50%;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.titulo1 {
    display: flex;
    justify-self: flex-start;
    font-size: 30px;
}

.itens {
    display: flex;
    width: 100%;
    height: 50%;
}

#item1 {
    background-image: url(floramarela.png);
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 2px solid rgb(0, 0, 0);

}

#item2 {
    background-image: url(florazul.png);
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 2px solid rgb(0, 0, 0);
    margin-left: 2px;
    margin-right: 2px;
}

#item3 {
    background-image: url(florvermelha.png);
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    border: 2px solid rgb(0, 0, 0);
}

.valor {
    display: flex;
    height: 10vh;
    width: 100%;
    justify-content: space-around;
}

#total {
    display: flex;
    width: 40%;
    background-color: rgb(209, 209, 209);
    height: 7%;
    border: solid 2px;
    border-radius: 20px;
    justify-content: center;
    align-content: center;
    font-size: 20px;
}

#final {
    width: 20%;
    height: 10%;
    border: solid 2px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 15px;
}

#conteudo2 {
    display: flex;
    background-color: rgba(255, 255, 255, 0.61);
    flex-direction: column;
    height: 70vh;
    width: 50%;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.titulo2 {
    display: flex;
    position: relative;
    font-size: 30px;

}

form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input {
    width: 100%;
    height: 70%;
    border: solid 1px;
    border-radius: 10px;
    margin-top: 5px;
    font-size: 15px;
    text-align: center;
}

#entrar {
    margin-top: 5px;
    display: flex;
    width: 50%;
    background-color: rgb(209, 209, 209);
    height: 40%;
    border: solid 2px;
    border-radius: 20px;
    justify-content: center;
    align-content: center;
    font-size: 20px;
}